Hello!
I have a canvas app with an on-prem sql back end. On the EditForm of the app, there is a varcharMAX field with a combo box inserted into the DataCard. The data source of the combo box is O365.
The intent is for users to select multiple people and for the selections to save to sql. I can get the data to save for a single selection, but not for multiple.
Combo Box current settings:
Items: Office365Users.SearchUserV2({searchTerm:cmbRCAMtgInvitees.SearchText, top:10}).value
DefaultSelectedItems: RenameColumns(Split(ThisItem.RCA_x0020_Meeting_x0020_Invitees, ", "), "Result", "RCA_Invitees")
Data Source is Office365Users
Data fields Primary text is Mail, Secondary text is DisplayName, SearchField is Mail.
DataCard Update Setting:
If(!IsEmpty(cmbRCAMtgInvitees.SelectedItems), Left(Concat(cmbRCAMtgInvitees.SelectedItems, Trim(RCA_Invitees) &", "),(Len(Concat(cmbRCAMtgInvitees.SelectedItems, Trim(RCA_Invitees) &", "))-2) ))
Any ideas would be GREATLY appreciated!
Thanks