I am building an app built on Dataverse tables. When navigating to a new form, I would like to set the default for a people picker field (entitled 'Associate') to the current user. I have attempted to use the formula that works with SharePoint as a data source, but it does not work here, so I assume that there is different language used with Dataverse as a data source.
The function that I used is as follows (screen shot also attached):
If(Parent.Mode= FormMode.New,{
Claims: Concatenate(
"i:0#.f|membership|",
User().Email // Person email
),
Department: "",
DisplayName: User().FullName,
Email: User().Email, // Person email
JobTitle: "",
Picture: ""
},ThisItem.Associate