Hi Everyone,
I have a list of person named Tag. When I click edit btn in power apps i saved it on a variable named varComments = ThisItem.Tag
On the DefaultSelectedItems of the combo box i put varComments.Tag.DisplayName
But when I patch I'm having a runtime-error.
This is my patch code for update
The error I found is that claims is not found on update. How to correct this?
when edit mode in combo box
SharePoint Settings looks good.
Other troubleshoot items.
still not working . sad :'(
I believe the issue is case-sensitive. Need to convert to Lower like below
Claims: "i:0#.f|membership|" & Lower(Source.Mail),
Email: Lower(Source.Mail),
Can you try to convert to Lower and try
MultiplePeople: ForAll(
ComboBoxSearchUserv2.SelectedItems As Source,
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & Lower(Source.Mail),
Department: "",
DisplayName: Source.DisplayName,
Email: Lower(Source.Mail),
JobTitle: "",
Picture: ""
}
)
User | Count |
---|---|
256 | |
110 | |
90 | |
51 | |
44 |