@mtsts
Could you please provide me more info so i can help you better? Is it a Person column or have you used a combobox connected to office 365 connector?
If it is a person column please follow these steps:
Items property:
Choices([@'Walk Through Inspection Checklist 2024'].Inspector)
Default property:
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
DisplayName: User().FullName,
Claims: "i:0#.f|membership|" & Lower(User().Email),
Department: "",
Email: User().Email,
JobTitle: "",
Picture: ""
}
DefaultSelectedItems:
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
DisplayName:User().FullName,
Claims:"i:0#.f|membership|" & Lower(User().Email),
Department:"",
Email:User().Email,
JobTitle:"",
Picture:""
}
DisplayFields:
["DisplayName"]
If you are using office 365 connector for combobox then please follow the below steps:
Items property of combobox:
Office365Users.SearchUserV2(
{
searchTerm: yourcombobox.SearchText,
top: 50,
isSearchTermRequired: false
}
)
DisplayFields property:
["DisplayName","Mail"]
SearchFields property:
["DisplayName","Mail"]
Update property of the people picker card:
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|"&yourcombobox.Selected.Mail,
Department: "",
DisplayName: yourcombobox.Selected.DisplayName,
Email: yourcombobox.Selected.Mail,
JobTitle: "",
Picture: ""
}
Please let me know if this works for you.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.