have a combobox that has the following code as the items property
It is multi-select and works fine. It saves a concatenated string of the selected users display name into a field, and a concatenated string of the users email into a separate field.
ex. Name field "Bill Bilson, Tod Todson"
ex. Email Field "BillBillson@website.com, TodTodson@website.com"
I have no issue retrieving just one user to the default selected property using either of these lines of code
First(Office365Users.SearchUserV2({searchTerm:varRecord.'Project Owner Email'}).value)
or
LookUp(Office365Users.SearchUser({searchTerm:varRecord.'Project Owner Email',top:1}),DisplayName = ThisItem.'Project Owner Name')
My issue comes when I try and set multiple users as the default selected item property using the following code
Filter(Office365Users.SearchUserV2({searchTerm:varRecord.'Project SME Email',top:10}).value,DisplayName in VarDefaultSME)
varRecord.'Project SME Email' = string of users emails that are saved to Dataverse and I wish to populate as the defualt selected items
ex."BillBillson@website.com, TodTodson@website.com"
VarDefualtSME.Value is a table that consist of the users FULL Names in a table
Any ideas on where I am making a mistake here? Thanks!