- From: https://www.c-sharpcorner.com/article/set-default-value-to-person-or-group-field-in-powerapps/
- https://www.spguides.com/powerapps-get-current-user-email/#:~:text=To%20get%20the%20current%20logged,existing%20connection%20as%20shown%20below.
- Get user info: User().Email , User().FullName , User().Image
—–
If yo need more use Office 365 connection
Input text = Office365Users.UserProfile(User().Email).Id - Select the Value Card, set People Picker Default field to:
{
‘@odata.type’: “#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser”,
DisplayName: User().FullName,
Claims: “i:0#.f|membership|” & Lower(User().Email),
Department: “”,
Email: User().Email
} - set DefaultSelectedItem to the above.