I would like to have a Data Validation list in cell D5 on Sheet1. The items in this list should be dynamically based on a table on Sheet2, but I only need the ones where Column2 is TRUE. Below is an example of my table on Sheet2:
Column1 | Column2
Item1 | TRUE
Item2 | TRUE
Item3 | FALSE
Item4 | TRUE
Based on the tabel above the Data Validation list in cell D5 on Sheet1 should only contain Item1, Item2 and Item4. Is this somehow possible (preferably without using VBA)?
I know I can create dynamic Named Ranges, but I don't know how to filter them based on another column.
Bookmarks