Hi all! Hoping for some assistance with a summary formula pulling in criteria from a multi-select dropdown response form...
I have a dashboard that has a form embedded in it to allow the user to enter their desired criteria (see below screenshot) and then the bottom of the dashboard pulls in the metrics using the form response as a filter (based on the main sheet).
The user must be able to select multiple Job Levels. The form is set up as a multi-select dropdown. The response feeds into a Response Sheet (see below). For example, the latest entry has both M1 and M2 selected as the Job Level.
From here, I used a Summary Formula on the main sheet (where the Employee's Job Level, SVP, etc. are all listed). For Job Level, I used the formula: =INDEX({Filter Criteria - Job Level}, Row#). This is working to display both selected Job Levels.
I then have a checkbox column ("Filter Criteria") on the main sheet to see only the rows that meet this Sheet Summary criteria.
This is where I am stuck!
The Sheet Summary is returning both Job Levels correctly, but for the filter column, there are no employees that are BOTH Job Levels. I need this Column to search for either M1 or M2 or whatever Job Levels are selected together. I tried adjusting the FIND portion of the formula (shown below) to HAS, CONTAINS, OR but none were working as I had anticipated. The formula is currently:
=IF(AND(FIND(SVP#, SVP@row ) > 0, FIND([Job Level]#, [Job Level]@row ) > 0, FIND(Location#, Location@row ) > 0, FIND([Date Range]#, [Date Range]@row ) > 0), 1)
Is there some way to incorporate an "OR" in there for the Job Levels so I can filter to see both M1 and M2? The only other alternative I can think of is to have separate entries for each desired Job Level, but I can see that getting lengthy (we have 21 Job Levels in total).
Any insight is appreciated!