Hi all
I am looking to create a dependent data validation list that takes type and category and returns a list of corresponding valid tasks.
The sheet is structured as below with type only completed in B1 and a new row for each Category and Task.
Data Entry
Lookup
I have the data validation working for Type and Category but for Task I can only get it so it returns corresponding Tasks based on Category not Type and Category.
This is as far as I've got...
Any help would be very much appreciated!
I am looking to create a dependent data validation list that takes type and category and returns a list of corresponding valid tasks.
The sheet is structured as below with type only completed in B1 and a new row for each Category and Task.
Data Entry
Type | ... |
Category | Task |
... | ... |
... | ... |
Lookup
Type | Category | Task |
... | ... | ... |
I have the data validation working for Type and Category but for Task I can only get it so it returns corresponding Tasks based on Category not Type and Category.
This is as far as I've got...
Excel Formula:
=OFFSET('Lookup'!$B$1,MATCH($A4,'Lookup'!$B:$B,0)-1,0,COUNTIF('Lookup'!$B:$B,$A4),1)
Any help would be very much appreciated!