Hi,
I have a form with 2 combo boxes and 1 text field (ComboBox5, ComboBox6 and TextInput2) "ComboBox6" further filters the results based on the input of "ComboBox5" using the following code; "Filter('SourceTable', 'FieldName' = ComboBox5.Selected.FieldName)".
The text field is populated based on the selected item in "ComboBox6" using the following code; "ComboBox6.Selected.'FieldName'"
So far everything is working fine.
My issue;
In some cases "ComboBox6" will only return 1 item based on the "ComboBox5" input. In that case I would like to auto-populate "TextInput2". How could I achieve this?
Vincent