Hello,
i have a combobox loaded with a collection.
Collect(
Interests,
{
Name: "Music"
},
{
Name: "Sport"
},
{
Name: "Reading"
},
{
Name: "Movies"
}
)
to store the selected items on a sharepoint column i use the following code
Concat(ComboInterests_Profile.SelectedItems, Name & ", ")
so inside my Sharepoint column i'll have something like "Movies, Reading,"
the problem is when i want to load back the combo with the value from the column.
how can i load the combobox showing as selected elements only the one coming from the sharepoint column? so it should show "Movies" and "Reading"?
thank you