Dependent Drop Down List Excel - Unique Values

后端 未结 1 1323
一整个雨季
一整个雨季 2021-01-27 15:35

I need to connect three lists of data and put them into drop down lists. So I started by making named ranges, getting all of the unique values and such.

Essentially I

相关标签:
1条回答
  • 2021-01-27 16:17

    As it is, you are creating a unique list for the first drop down box in the first row. The unique list for the second drop down in the first row is dependent upon the value present in your first drop down on the first row. The second list looks for the value you selected in the first drop down of the first row and populates itself with the corresponding values for every instance of the value you picked from the first drop down. This list repopulates and changes every time you select a new value in the first drop down of the first row.

    When you are creating the second row, the second drop down is reading from the first row's unique list. There is no unique list based upon the value you have selected in the first drop down of the second row for the second drop down of your second row.

    The workaround is to create new lists for the drop downs in the second row.

    From your link:

     3.Type "=INDEX(product, MATCH(0, COUNTIF($B$1:B1, product)+(order<>Sheet1!**$D$2**), 0))" 
    

    The bolded part is your problem. When you drag this formula, it ties everything to D2 on Sheet1. You will need to make another list using this formula, but change $D$2 to $D$3 or whatever the cell address of your first drop down is for that row.

    0 讨论(0)
提交回复
热议问题