Hello all,
I would like to ask you for help with following issue:
I have in my canvas app 5 text inputs in the row, which are patched by submit button to the dataverse table:

And on the another screen I need to define for the label in the gallery following formula:
- show me text input 5 in case that there is some record, if not show me text input 4 if is not empty,
- if text input 4 is empty show me text input 3,
- if text input 3 is empty show me text input 2,
- if text input 2 is empty show me text input 1.
I have tried this formula but it works just to the 3rd text input...
If(IsBlank(Text input5');text input4';text input5') &
If(IsBlank(Text input 4');Text input3';Text input4') &
If(IsBlank(Text input3');Text input2';Text input3') &
If(IsBlank(Text input2');Text input1';Text input2)
Thank you very much.
P.