I have a table containing project name and is_live. I'd like to populate the conditional dropdown to show only those that have is_live = 1. the table looks like
PROJECT1 | 1
PROJECT2 | 0
PROJECT3 | 0
PROJECT4 | 1
PROJECT5 | 1
The dropdown should contain PROJECT1, PROJECT4 and PROJECT5 as they have is_live = 1. If I flip PROJECT2 to 1 then that should then show.
I tired creating a pivot table and having the is_LIVE as a filter. I then created a named list based on the rows in the pivot. This worked well apart from the named list doesnt grow or shrink as the rows grow and shrink.
Does anyone know if this is possible in Excel?
Thanks