Hi @Siamak
Thanks for the info. Will find the issue. No issues.
The source I'm using is Office 365 users. So Items property of my ComboBox Required Attendees is
Office365Users.SearchUser({searchTerm: ""})
If your Combobox items property is People/Person Column from SP then
Items property of Combobox will be
Choices([@SPList].ColumnName)
Get the emails id's from the Person Combobox
Concat(
selectAttendee.SelectedItems.Email,
Email & ";"
)
Note: If you get builtinicon:Mail means, not accessing right property
Concat(selectAttendee.SelectedItems.Email,Mail&";") Change to Concat(selectAttendee.SelectedItems.Email,Email&";")
If this information does not help you, Let me know the data source that you are using and your Items' property.