Hi,
I am getting error in the below formula: Expected Record Value.
I have a dropdown ( Market ), user can select multiple and if that option is not found in the dropdown, I have added a text field which shall be updated in the Market dropdown field.
It worked fine but additional requirement is if user selected 3-4 options in the dropdown and also wants to enter text in the textinput field. How can I concatenate multiple values from the dropdown and value in text input field and save it.
update property of the dropdown data card:
If(IsBlank(DataCardValue2.Selected), TextInput.Text, Concat(DataCardValue2.SelecteItems, Value, ",") &
If ( IsBlank(TextInput1.Text),"", TextInput1.Text & "," ) )