Hi
I have an app and want to set a default value on a person field in PowerApps. The datasource is a simple SharePoint Online list with a person field in it. I know how to write the JSON to represent the person, but i am unsure on how to handle the field tile correctly.
Anyone knows how to achieve this easy?
Solved! Go to Solution.
Hi @HeikoHa,
Do you want to set a Default value for the Person field in the Edit form of your app?
The user @Brice235i has faced same issue with you please check the response within the following thread:
I have made a test on my side, please take a try with the following workaround:
Set the DefaultSelectedItems property of the ComboBox control within the Executor Data card to following:
If( EditForm1.Mode=FormMode.New, { DisplayName: User().FullName, Claims: "i:0#.f|membership|" & Lower(User().Email) }, Parent.Default )
On your side, you should type:
If( EditForm1.Mode=FormMode.New, { DisplayName: "The display name of the user you want to set as default", Claims: "i:0#.f|membership|" & Lower("The email address of the user you want to set as default") }, Parent.Default )
More details about set a default value for a Person field in Edit form, please check and see the following blog:
https://powerapps.microsoft.com/en-us/blog/default-values-for-complex-sharepoint-types/
Best regards,
Kris
Hi @HeikoHa,
Do you want to set a Default value for the Person field in the Edit form of your app?
The user @Brice235i has faced same issue with you please check the response within the following thread:
I have made a test on my side, please take a try with the following workaround:
Set the DefaultSelectedItems property of the ComboBox control within the Executor Data card to following:
If( EditForm1.Mode=FormMode.New, { DisplayName: User().FullName, Claims: "i:0#.f|membership|" & Lower(User().Email) }, Parent.Default )
On your side, you should type:
If( EditForm1.Mode=FormMode.New, { DisplayName: "The display name of the user you want to set as default", Claims: "i:0#.f|membership|" & Lower("The email address of the user you want to set as default") }, Parent.Default )
More details about set a default value for a Person field in Edit form, please check and see the following blog:
https://powerapps.microsoft.com/en-us/blog/default-values-for-complex-sharepoint-types/
Best regards,
Kris
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
199 | |
72 | |
50 | |
41 | |
30 |
User | Count |
---|---|
256 | |
116 | |
95 | |
91 | |
76 |