I have a four columns on a sheet1, say like this:
I'm using data validation on sheet2 to create a drop down box in a column, where the user can select the sub-category in column 1 from the drop down, using the setup below:
Allow = List
Source = 'Sheet1'$A2:A$A4
Then, in the adjacent columns, I am using another data validation rule to allow the user to grab a value related to the sub-category that was chosen, using the setup below:
Allow = List
Source = indirect(a1)
The issue is that if I grab Sub Category1 or Sub Category3, the adjacent column will return the values from those particular columns. However, if I choose Sub Category2 from the drop down, then the values don't appear.
Any help would be appreciated. TIA.
Category | Sub Category1 | Sub Category2 | Sub Category3 |
Sub Category1 | Value 1 | Sub-cat2 value 1 | Sub-cat3 value 1 |
Sub Category2 | Value 2 | Sub-cat2 value 2 | Sub-cat3 value 2 |
Sub Category3 | Value 3 | Sub-cat2 value 3 | Sub-cat3 value 3 |
Sub Category4 | Value 4 | ||
Sub Category5 |
I'm using data validation on sheet2 to create a drop down box in a column, where the user can select the sub-category in column 1 from the drop down, using the setup below:
Allow = List
Source = 'Sheet1'$A2:A$A4
Then, in the adjacent columns, I am using another data validation rule to allow the user to grab a value related to the sub-category that was chosen, using the setup below:
Allow = List
Source = indirect(a1)
The issue is that if I grab Sub Category1 or Sub Category3, the adjacent column will return the values from those particular columns. However, if I choose Sub Category2 from the drop down, then the values don't appear.
Any help would be appreciated. TIA.