Hi everyone I am trying to update a people column (that allows multiple) in a SharePoint list. I patch from a combobox but the following happens.
My code is
hi @NicolleAbraham ,
try this:
Patch(
'Look-up Roles',
LookUp(
'Look-up Roles',
Title = "Project Manager Snr" && Entity = cb_LegalEntity.Selected.Title
),
{
People: ForAll(
pp_CE_ProjectManagerSnr.SelectedItems,
{
Claims: "i:0#.f|membership|" & Lower(ThisRecord.Mail),
Department: ThisRecord.Department, // assuming ThisRecord has Department
DisplayName: ThisRecord.DisplayName, // assuming ThisRecord has DisplayName
Email: ThisRecord.Mail,
JobTitle: ThisRecord.JobTitle, // assuming ThisRecord has JobTitle
Picture: ThisRecord.Picture // assuming ThisRecord has Picture
}
)
}
)