Hi all,
I have been reading posts all day trying to solve this issue.
I have a situation where I have a combo-box in my app that is submitted to a sharepoint list choice column with multi select enabled.
The list item is populated by power automate. This works fine.
My issue is trying to read back the value/s in this column. I am displaying the list in a gallery control in my app, and need to be able to populate the combo-box in the app with the values present in any given item in the list/ gallery.
I have a button in the gallery and have tried the following,
ClearCollect(allowancesColl,ThisItem.Allowances)
and
Set(allowancesVar,ThisItem.Allowances)
however these are returning nothing to the collection or variable. I need to return a record to be able to set the "DefaultSelectedItems" property of the combo-box.
What is the datatype returned by a multi-choice field from SharePoint? How do i create a record in Power Apps from this?
Thanks in advance.