Hi @BematechTeams ,
Do you want to set a Default value in the Perople Picker ComboBox to same Group?
Have you enabled the "People and Groups" option for your People field in your SP list as below?
If you want to set the Default value of the People Picker ComboBox to a Group, you must enable the "People and Groups" option for your Person column in your SP list as above.
I assume that you have enabled the "People and Groups" option for your Person column in your SP list, I have made a test on my side, please take a try with the following workaround:
Set DefaultSelectedItems property of the People Picker ComboBox to following:
{
DisplayName: "PowerApps Members", /* <-- PowerApps Members is my group name */
Claims: "c:0o.c|federateddirectoryclaimprovider|" & Lower("PowerApps@xxxxxx.onmicrosoft.com"),
Department:"",
Email: "PowerApps@xxxxxx.onmicrosoft.com",
JobTitle:"",
Picture:""
}
Note: The "PowerApps@xxxxxx.onmicrosoft.com" represents the email address of my group.
On your side, you should type:
{
DisplayName: "Your Group Name", /* <-- Type your Group Name here */
Claims: "c:0o.c|federateddirectoryclaimprovider|" & Lower("The email address of your Group"), /* <-- Claims property defined for a group is different from that for a user */
Department:"",
Email:"The email address of your group",
JobTitle:"",
Picture:""
}
Please take a try with above solution, check if it could help your scenario.
Best regards,