Hi @RMDNA ,
By design, the Office365Group connection can only get the Microsoft 365 type group.
You can try to use AzureAD.GetMemberGroups function to get the groups you want.
For example, set the following formula in OnStart property of App, and set OwnedGroup to Items property of a dropdown to check the result.
ClearCollect(OwnedGroup,AzureAD.GetMemberGroups(User().Email,false).Value)


Note: above will return the ID of all the groups, you can then do other actions based on the selected group ID.
For example, use below to get the selected group name:
AzureAD.GetGroup(Dropdown7.Selected.Value).displayName
Or, use this to get the users who are members of the selected group:
AzureAD.GetGroupMembers(Dropdown7.Selected.Value).value
Best regards,
Allen