I have a people picker in my app that is connected to a SharePoint person field. When I try and patch the field I get an error. The section of the patch formula is below. I get the error 'The type of this argument does not match the expected type 'Table'. Found type 'Record'.' What is wrong with my formula?
'Strat Comm Partner Email':{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & Lower(
LookUp(
Office365Users.SearchUser(),
DisplayName = TicketDetailStratCommPartnerComboBox.Selected.DisplayName
).Mail
),
Email: LookUp(
Office365Users.SearchUser(),
DisplayName = TicketDetailStratCommPartnerComboBox.Selected.DisplayName
).Mail,
Picture: "",
JobTitle: "",
Department: "",
DisplayName: TicketDetailStratCommPartnerComboBox.Selected.DisplayName
}