I have two galleries. the parent gallery just takes care of the headings, and some other information. Then the child gallery has the list of people, buttons, counts, etc. My issue is I want to make sure that the people in the child gallery go under the the right heading of the parent gallery.
Example of my heading
This is how I am getting the list of people
ClearCollect(
collSMEExperts,
Filter(
'db.StaffMngr',
cdeInd= smeSectorL1,
team = //compare to list of people?
)
);
Then my list of titles
ClearCollect(
disTeam,
Distinct(
'db.Tax',
TaxTeam
)
);
Each staff person has a team, and I am assuming to get that staff in the right team I need to make an addition in the first filter. As you can see I started something where I put team = but I am drawing a blank on how to compare that persons team to see if it matches. So I want only people with the Deals Strategy teams inside the deals strategy heading, only people with the risk team inside the risk heading and so on

Report
All responses (
Answers (