I have a named range called "myList" defined as rows 1 to 200 of Sheet1. There are 20 columns, the 8 first columns are informations about the employee while the last 12 columns are 0s or 1s for inclusion of the employee in each month.
Now, I want to create a drop-down menu that will show me the name of the employees if there is at least a 1 in columns 9-20 of my named range.
For now, I use the following formula as data validation: =INDEX(myList,,1)
and it shows me every name from myLast whether there is a 1 or not in the columns 9-20.
How could I change this so that the only names showing in the data validation creating a drop-down menu are the names on column 1 of myList where the corresponding SUM() of columns 9-20 of myList >= 1?