This app has a drop down list with all Entra ID groups I own, I was able to list the built-in table called "Teams" instead, which is the "Teams" I own in Dataverse.
However, I would like to list the members of each Team selected in the Drop List into the Gallery of this canva app.
Dropdown Configuration: Use the Teams table in Dataverse to populate the dropdown with Teams owned by the user. Set the dropdown's Items property to Filter(Teams, Owner = User().Email)
Use the TeamMemberships table to list members of the selected Team.Set the gallery's Items property to Filter(TeamMemberships, TeamId = Dropdown.Selected.TeamId)
Pre-load data for Teams and Team Memberships using ClearCollect for better performance: ClearCollect(AllTeams, Filter(Teams, Owner = User().Email));
ClearCollect(AllMembers, TeamMemberships);
Update dropdown and gallery to use pre-loaded collections Dropdown: AllTeams Gallery: Filter(AllMembers, TeamId = Dropdown.Selected.TeamId)
let me know if you need more details.
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.