So I have several Comboboxes that have their items populated like so:
Table({Value: IfError(Index(Split(DataCardValue2.Text; " "); 1).Value; "")})
Meaning, theres a Textinput that the user will put a lot of numbers, separated by a space. Example: user inputs into DataCardValue2 "123 1234 12345", so Comboboxes 1 2 and 3 should have a single item of "123" "1234" "12345", respectively.
I need to edit the DefaultSelectedItems property of all of these databoxes so that each selects the singular first item they have.
How can I edit that property to make it so?
Ty in advance 😄