Morning! I have a workbook that has numerous sheets and each sheet has a table on it. The purpose of the workbook is to standardise naming convention for products, so each sheet is the family of products and the table in each sheet is the name of the product with columns for all the 'options' of the products as below:
the idea is to have dependent drop downs where you select the 'family' (i.e. worksheet name) and then product name (column A of the 'family' worksheet) and then option 1 dropdown, option 2 dropdown etc.
I already have VBA coding in place so that each time the sheet is opened a list is created of each sheet name ('Master' sheet, col.A) and the corresponding table on that sheet ('Master' sheet, col.B) so that more sheets/tables can be added.
The issue that I am having is that I am not sure how to create the drop down lists that are dependent on the previous selection? e.g. If you select Product 1 in the first dropdown, then how would you generate the drop downs of the options JUST for product 1? Let me know if anyone needs more information! And i am happy to email a generic workbook (product name removed for privacy!) if it is needed. Thanks in advance!
Product name | Option 1 | Option 2 | Option 3 | Option 4 | Option 5 | Option 6 | Option 7 |
Product 1 | Option 1a | Option 2a | Option 3a | Option 5a | Option 6a | Option 7a | |
Option 1b | Option 2b | Option 3b | Option 7b | ||||
Option 7c | |||||||
Product 2 | Option 1a | Option 2a | Option 3a | Option 5a | Option 6a | Option 7a | |
Option 1b | |||||||
Product 3 | Option 1a | Option 2a | Option 3a | Option 4a | Option 5a | Option 6a | Option 7a |
Option 1b | Option 2b | Option 3b | Option 5b | Option 7b | |||
Option 2c | |||||||
Option 2d | |||||||
Option 2e | |||||||
Option 2f |
the idea is to have dependent drop downs where you select the 'family' (i.e. worksheet name) and then product name (column A of the 'family' worksheet) and then option 1 dropdown, option 2 dropdown etc.
I already have VBA coding in place so that each time the sheet is opened a list is created of each sheet name ('Master' sheet, col.A) and the corresponding table on that sheet ('Master' sheet, col.B) so that more sheets/tables can be added.
The issue that I am having is that I am not sure how to create the drop down lists that are dependent on the previous selection? e.g. If you select Product 1 in the first dropdown, then how would you generate the drop downs of the options JUST for product 1? Let me know if anyone needs more information! And i am happy to email a generic workbook (product name removed for privacy!) if it is needed. Thanks in advance!