
Hi All
on my form, i have a custom datacard that is a dropdown box with 3 options to choose from. the 3rd option is "Other" where a custom Text input becomes visible for the user to type in a different option.
The problem i now have is with the update property. how do i ensure the datacard updates fromt he drop down if options 1 or 2 is select but if option 3 is selected then to use the text input to update?
Hi , @KristyH
You can try to use this code in your Update property. Dose this field is a Choice type in your side?
If this, you can refer to this code:
If(Combobox.Selected.Value = "Other" , {Value: TextInput.Text} , Combobox.Selected )
You need to replace the Control name in your side.
If this reply can help you , you can click mark this reply as solution (Accept solution) which can help more people, thanks in advance!
Best Regards,
Yueyun Zhang