My app contains a combo box (ComboBox1) that allows multiple selections.
The Update property of the combo box's data cards is:
Concat(ComboBox1.SelectedItems, Title&";"&Char(13))
The defaultselecteditems property of my combo box is:
RenameColumns(Filter(Split(Parent.Default, ";"), !IsBlank(Result)), "Result", "Value")
I have a submit button that submits the form and updates a Sharepoint list. All of that works fine. However, if I navigate to my form from a gallery item, make additional selections in the combo box, then submit the form a second time, only the new selections I've made are reflected in my Sharepoint list.
For example, if there are 3 default selected items in my combo box, and I choose 2 more selections, when I submit the form this is what shows up in my Sharepoint list:
;
;
;
Selection 4;
Selection 5;
This happens even though the combo box still shows that there are 5 items selected!
Any suggestions on how to fix this would be greatly appreciated. Thank you!