Hi to all
I read here a few post about Dependent Dropdown list, but still confused and can't get correct solution.
In Sheet2 I have a all data. In the cell E2 I use unique formula to get the names of companies:
In the cell F2 I use filer formula to get the names of all products:
In the cell H2 I use filer & unique formula (just for test) to get the names of products related to cell B2 in the Sheet1:
In the Sheet1 - in the cell B2 I use list and I copied this cell till B7:
Now is the problem... I can't directly use Filter or Unique formula inside Data validation and for now I used in the cell C2 this formula for list and I copied this cell till C7:
It give me All products in the list and I want only related to the name of Company in a cells B2:B7 in the Sheet1
If I use H2 from Sheet2 in data validation, it stay related only to B3 even if I drag it down
How I can get correct dropdown lists in cells C2:C7 in Sheet1 ?
Thanks
I read here a few post about Dependent Dropdown list, but still confused and can't get correct solution.
In Sheet2 I have a all data. In the cell E2 I use unique formula to get the names of companies:
Code:
=UNIQUE(Table7[Company])
Code:
=UNIQUE(Table7[Product])
Code:
=UNIQUE(FILTER(Table7[Product],Table7[Company]=Sheet1!$B3))
In the Sheet1 - in the cell B2 I use list and I copied this cell till B7:
Code:
=Sheet2!$E$2#
Now is the problem... I can't directly use Filter or Unique formula inside Data validation and for now I used in the cell C2 this formula for list and I copied this cell till C7:
Code:
=Sheet2!$F$2#
If I use H2 from Sheet2 in data validation, it stay related only to B3 even if I drag it down
How I can get correct dropdown lists in cells C2:C7 in Sheet1 ?
Thanks