Hi ,
I'm using a combobox in my powerapp form
items : Distinct(Table2,'Entity Name')
Default selected Items : Filter(Split(Parent.Default, "; "), !IsBlank(Result))
and using datacard for recording the selected items from combobox
Datacard -Update : Concat(ComboBox3.SelectedItems,Result,"; ")
But in the editmode of the form only the last selected item in the combobox is displaying , the rest of the selected items aren't showing
I've tried the Different DSI : Table({Result: Parent.Default})
still in the edit mode only one selecteditems from combobox is showing
Please help me to fox this issue