Hey there,
I have a report writing app I am working on.
My main goal is to have a field that the user can select multiple values from, be able to submit that report, store the data in an ExCel table, later select that stored report from the gallery, and show their old selections in the combobox/listbox/whatever.
My app doesn't use EditForms and I am having a little trouble getting my ComboBoxes to load stored data.
I have a ComboBox like this -

I collect these selections to an ExCel table in OneDrive with a formula like
Collect(Table1,{Selections:Concat(ComboBox1.SelectedItems,Concatenate(Text(Value),","))})
This code gives me these results-

I try to take this data back in to the ComboBox's DefaultSelectedItem with a formula like
LookUp(Table1,ReportID=DataCardValue1.Text,Selections)
Taking the text value right back in to DefaultSelectedItem does not work. DefaultSelectedItem requires Table data type and I believe all of the columns in ExCel tables have to be Text data type.
I am looking for a way to turn that Text data back in to Table data, a different way to store the data so it stays as Table data, or an all together different solution. I am open to all ideas and really appreciate the help.
Thanks!