Hi all — Looking for some guidance on the below…
I have a sheet named "Tracker" with a dropdown column of job levels (named "Target Audience") and another column that I am wanting to sum the job levels from whatever is selected for that row ("Total Target"). The totals for each job level are pulling from as a cross sheet reference from another sheet.
If only one job level is selected, the below formula works:
=INDEX({Total Count}, MATCH([Target Audience]@row, {Job Level}, 0))
If the user selects more than one job level, however, I cannot get the SUMIF formula to work. Currently I have it as the below:
=SUMIFS({Total Count}, {Job Level}, CONTAINS(@cell, INDEX ({Total Count}, MATCH([Target Audience]@row, {Job Level}, 0))))
This formula is returning "#NO MATCH"
In the below screenshot, the first two rows are set without the SUMIF formula to show that the Index/Match is working. The third row that has two selections for Target Audience is where #NOMATCH is being returned.
Can anyone help me determine what I am missing? Thank you!