hi all,
trying to crate a combobox that records to SPO list... the thing is that i want people in the combobox eg, Jack, Jim, etc... to be recorded to individual lines of SPO (their UPNs, and author to the owner column):
ForAll( AuthUsers_1.SelectedItems,
Patch( UserAccess, Defaults(UserAccess),
{ Owner: svcUPN.Text,
AuthorizedUsers: AuthUsers_1.Selected.UserPrincipalName }))
the code above however, records twice the second person (when trying with two).
I will also need a way to feed it to defaultselecteditems...
thanks in advance