Trying to accomplish this without using VBA - I have two sets of data: Categories and SubCategories both which include a name/description as well as a number to identify them. I have a dropdown using Data Validation for the categories which uses a VLOOKUP to pull in the corresponding number for that category. I'm now trying to create a second drop down which will show me subcategories but only to their corresponding categories. The list of categories and subcategories are listed on separate sheets. The subcategory also has a 3rd column which lists the category number. See below for an example.
SubCategory SubCatNumber Category Number
Carrots 00 10
Celery 02 10
Onions 03 10
Apples 00 12
Bananas 02 12
Cantaloupe 03 12
So the drop down for the sub cats would show me Carrots, Celery and Onions when I choose Category 10 from my existing drop down. I've tried using another VLOOKUP as well as a combination of INDEX and OFFSET but can't seem to get this. Any help would be appreciated.