Hi @Frankie70 ,
If you would like to check whether the App user is a member of a specific group, you can use below method OnStart of the App:
ClearCollect(colGM, Office365Groups.ListGroupMembers("GroupIDinAzureAD").value);
Set(memberCheck, !IsBlank(LookUp(colGM,Lower(User().Email) = Lower(mail))))
If you would like to check if the user owns the specific group, you can use below method OnStart of the App:
ClearCollect(colGM, Office365Groups.ListOwnedGroups().value);
Set(OwnerCheck, !IsBlank(LookUp(colGM, "GroupID" in id)))
Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.