I have a combo box in my app that allows multiple selections, and I have a separate label that displays the selections from the combo box. I'm doing this because there could be many selections and I want the user to be able to see them all at a glance. It works fine when the user is choosing new items in the combo box. They show up fine in the label.
However, when you navigate from a gallery on another screen and the combo box is populated with default selected items, the label doesn't show anything.
My combo box is in a form. The Items that populate the combo box come from a collection. (The items property of the combo box is Collection.Title).
The defaultselecteditems property of the combo box is:
RenameColumns(Filter(Split(Parent.Default, ";"), !IsBlank(Result)), "Result", "Value")
The text property of my label is: Concat(ComboBox1.SelectedItems, Title& Char(13))
Any suggestions would be greatly appreciated. Thanks!