On one screen, the user would select items from a combo box and the ComboBox.SelectedItems would be saved to a list[] inside a collection.
On the next screen the contents of the list should be displayed in a text label which is inside a gallery
I tried the formula Concat(ThisItem.list, Value & ",") however I am getting the error that "Value" is not recognized. I have tried to replace "Value" with "Title", "Name", "Record" or even the column name of the data on the sharepoint list but none of those work.
The funny thing is if I insert another combobox on the new screen with the same datasource and use the formula ThisItem.list as the DefaultSelectedItems property then the proper items are shown. And funnier that I can then use Concat(Combobox2.SelectedItems, Title & ",") on the new combobox and the label displays properly.
How can i access the saved selections of the original combobox directly?