So I'm having trouble displaying ALL of the selected items in a text box. I'm trying to do this so later on I can take all of the selected items and send them in an email but for now I'm just trying to display the items in a text box.
To give more context, the combo box is named ComboBox2. The items are from a collection called ComboList2. I have a text label with the follow property for text:
ComboBox2.Selected.Result
However, the text label only displays the LAST selected value. So if I have 5 items selected, only the very last item selected will be displayed.
I saw a similar post on this forum but it didn't really help me. I tried using the following code as well:
Concat(ComboBox2.SelectedItems, ",")
But this only made a certain number of commas appear. (If 5 items were selected, 5 commas would appear). I also tried the following:
ComboBox2.SelectedItems (Error: expected text value)
ComboBox2.SelectedItems.Result (Error)
ComboBox2.SelectedItems.Value (Error)
Any ideas on how to display or concatenate all of the selected items?