Hi @Yakimo
This gets name , id and email of Group
ClearCollect(
colAllADGroups,
ShowColumns(Office365Groups.ListOwnedGroups().value,"id","mail","displayName")
);
and this gets group members for "Development" group
Clear(MembersInDevelopmentGroup);
ForAll(
colAllADGroups,
If(
displayName = "Development",
Collect(
MembersInDevelopmentGroup,
ShowColumns(Office365Groups.ListGroupMembers(id).value,"id","mail","displayName")
)
)
);