Hi @Anonymous ,
Do you list the "NrC" up to "NrA" using a Gallery?
Do you want to display the values for the "NrC" up to "NrA" in your Gallery based on the entered "Nr pierscienia" value?
Based on the needs that you mentioned, I think the If function could achieve your needs. Please consider take a try with the following workaround:
Within the Gallery, set the Default property of the Segment TextInput box to following:
If(
NrpierscieniaTextBox.Text in 'YourSPList'.'Nr pierscienia',
ThisItem.ColumnName,
Blank()
)
If you do not use a Gallery control to list the "NrC" up to "NrA", please consider set the Default property of each Segment TextInput box to following:
If(
NrpierscieniaTextBox.Text in 'YourSPList'.'Nr pierscienia',
ThisItem.'NrC',
Blank()
)
If(
NrpierscieniaTextBox.Text in 'YourSPList'.'Nr pierscienia',
ThisItem.'NrE',
Blank()
)
If(
NrpierscieniaTextBox.Text in 'YourSPList'.'Nr pierscienia',
ThisItem.'NrD',
Blank()
)
...
...
Best regards,