I have dropdown that selects an Azure AD group based on a condition.
The members of the group are already stores in a variable using the code below.
Set(varL2opgcUsermembers, AzureAD.GetGroupMembers("b59ff3f6-31f7-45cd-bd1b-142e36dd3cb2").value);
I have a person type column in sharepoint (Allow multiple selection is enabled for this column).
When submitting the form, I want to store the members from the above variable to this column with display names of the members.
How can i achieve this?
Thanks in advance