I currently have a sheet that collects weekly attendance info from multiple stakeholders (for the purpose of this question we can just look at the Coach Info columns). There are 3 responses that can be put into this column: 'Yes', 'Some, and 'None'.
My second sheet is a monthly tracker in which I am trying to read four weeks of data from the weekly Coach Info column and spit out the highest level response with the specific criteria being the student name (if there is a 'Yes' in any of the four cells, take 'Yes', if no 'Yes' but there is a 'Some' then take 'Some' and if there are no 'Yes' or 'Some' responses then take a 'No'). I am trying to use an INDEX(COLLECT) formula but am only able to get one response and not the logic I described in the parentheses above. I am not sure if there is a way to add an IF(OR) statement or something similar but I am stumped. Below is the current formula I am using -
=IFERROR(INDEX(COLLECT({2024/25 Weekly Sports/Activity Attendance Range 1}, {2024/25 Weekly Sports/Activity Attendance Range 1}, OR(@cell = "Yes", @cell = "Some of them", @cell = "No"), {Weekly Attendance Info Range 2}, Student@row, {Weekly Attendance Info Range 3}, Month@row), 1), "No Data")