ClearCollect(
MyGroups,
AddColumns(
AzureAD.GetMemberGroupsV2(MyProfile.id, false).value,
"GroupName",
AzureAD.GetGroup(Value).displayName
)
);
The above formula grabs all of a user's Azure AD groups, which is great. I would like to further tweak this to only get the groups that contain a specific word, say "Employees."
I'm hoping that by having it run with a parameter that it would speed up this process as it currently takes 10-15 seconds to fetch this data. If this won't be the case, please let me know and I'll simply continue using this and just apply a filter to my drop down to achieve my goal.
Thank you!