Hi @DBJ ,
Could you please share a bit more about the "OfficerNameCol1" variable? Does it store the display name of the user?
Based on the formula that you mentioned, I think there is something wrong with it. The value provided for the Claims attribute should contains the email address of the user rather than Display Name. The standard value format for the Claims attribute should be as below:
"i:0#.f|membership|user1@email.com"
On your side, please consider modify your formula as below:
{
'Officer Name': {
Claims: "i:0#.f|membership|" & Lower(LookUp(Office365Users.SearchUserV2().value, DisplayName = OfficerNameCol1).Mail),
DisplayName: OfficerNameCol1,
Email: LookUp(Office365Users.SearchUserV2().value, DisplayName = OfficerNameCol1).Mail,
Department: "",
JobTitle: "",
Picture: ""
}
}
Note: Firstly, you need to add Office 365 Users connection as data source in your app before trying above formula.
Please consider take a try with above solution, then check if the issue is solved.
Best regards,