@WarrenBelz
Hi
Can I have your thought on this?
So I have a Combo box, the Datasource is Office365Users. It is set to select multiple users.
So I want to send all the selected items to SP column like this, so will be easier to view in View Mode.
With({_RUitms: RestrUsers.SelectedItems},
Concat(
ForAll(Sequence(CountRows(_RUitms)),
{_RUitms: Last(FirstN(_RUitms, Value)), seq:Value}
),
Text(seq) & ". " &
_RUitms.DisplayName & Char(10) &
"<"&_RUitms.Mail & ">" & Char(10)
))
So in Form Edit mode , I'm collecting this data to a Variable. So from the variable is it possible to lookup the email and select from the combobox. Want to set this rule in the Defaultselecteditems in the combobox.

I was able to do this using comma during Concat and putting this code in the Defaultselecteditems
RenameColumns(Split(varSelectedItems, ","), "Result", "Value") .
It does select all the items in the combobox but it doesn't display them in the Label.

Don't know what I'm doing wrong. Anyway I want to Concat using both Display Name and Email and Filter with Email since many user Name is not unique.