Hello,
I have a SharePoint list column "products". Its being updated by my powerapp using form > combox with the below formula:
Concat(ComboBox4.SelectedItems, Value, ", ")
It writes on the sharepoint okay with format product1, product2, product3
However, when I use the DefaultSelectedItems, its not showing the current data it has for products. I tried the below formula but its not working:
ForAll(Split(Parent.Default,", ",LookUp(colVisible,'Products'.Value))
colVisibile is the collection I use with all data.
Thanks!