I have an 'Approver' person or group field in my SharePoint list. I am using a patch in my power apps to create a new item in the list but I'm unsure how to patch to this field. Any help would be much appreciated. Thanks!
Patch(
'Resource Approval',
Defaults('Resource Approval'),
{
Task: {Value:itemRecord.Task.Value},
Category: {Value:itemRecord.Category.Value},
ApprovalTimeStamp: Blank(),
'Approver Comments': Blank(),
Status: {Value: "In Progress"},
Approver: ????
}
)
Here's a blog on the topic. PATCH A SharePoint Person Column In Power Apps - Matthew Devaney
Essentially the person or group needs to be in the form of a record that looks like this.
{ '@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|<<email of User>>",
Department: "",
DisplayName: "<<display name of User>>",
Email: "<<email of User>>",
JobTitle: "",
Picture: ""
}
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
Super User 2025 Season 2
mmbr1606
275
Super User 2025 Season 2