Hi @vecerpa , @kenny_i ;
Thanks for this post, it was useful!
I did a few changes on the formula to get it working on my end:
Set(varGroups, AzureAD.GetMemberGroupsV2(cmbEmployee.Selected.Id,false));
Side note: cmbEmployee is a combobox I have linked to O365 to search users, the code for the cmbEmployee is:
Filter(AddColumns(Office365Users.SearchUser({searchTerm:cmbEmployee.SearchText, top:10}) As Temp, "EmpName", IsError(Office365Users.ManagerV2(Temp.Id))),EmpName=false) - end of side note.
Set(varDisplayName, Concat(varGroups.value, AzureAD.GetGroup(Value).displayName,","))