A drop down list is an awesome tool. You can pre-define some values and user can enter data by selecting one of those values.
One of its advanced features is a “Dependent Drop Down List”.
A dependent drop down is all about showing values in a drop down list according to the selection of the value in another drop down.
Today, in this post, I’d like to share with you a Simple 7-Steps Process to create this drop down.
But first of all, let me tell you why it is important.
In the below example, you have two drop-down lists. Size drop down is dependent on product drop down.
If you select the white paper in product cell then in size drop down will show small and medium.
But, if you select gray paper then its size will be medium and large.
So here the basic idea to create a dependent drop down list is to get correct size as per product name.
So let’s get started.
For creating a dependent drop down list we need to use named ranges and indirect function. And, please download this sample file from here to follow along.
Quick Tip: By using this method to create a named range, the value in the first cell will be considered as the name and rest of the values as the range. You can also use dynamic named range for this.
=Indirect(“Product”)
=Indirect(“A5”)
Finally, your dependent drop down list is ready. You can download this sample file from here to try it yourself.
First, you have created three named ranges. Then we have used one named range to create product drop down.
After that, for the second drop down list, you have used indirect function & refer to the value in product cell.
If you notice, our size named ranges has name equals to the values we have in product drop down.
When we select “WhitePaperSheet” in product cell, then in size cell indirect function refer to the named range “WhitePaperSheet” and when you select “GreyPaperSheet” it will refer to named range “GreyPaperSheet”.
Related ➤ Dynamic Drop Down List in Excel
In above example, you have created a two level dependent drop down list. But sometimes, we need to create a list with three level dependency.
For this, all you have to do, create a third drop down list which is dependent on the selection of the second drop down list.
Let’s say if we want to add a drop down list with “Length x Width” of the sizes for paper sheets.
And, for this, you have to create a third drop down list which will show the “Length X Width” as per size selection.
Here are the steps:
=Indirect(“C5”)
Now, your three level drop down list is ready
You can download this sample file from here to learn more.
A dependent drop down list is really a useful tool. And, It’s easy to create it. I still remember the first time when I used it in an invoice template.
As @Wadie Seruge asked, you can create n number of dependent drop down lists. But, it will become complex with increasing numbers.
I hope this tip with help you get better at Excel.
Now tell me one thing. Have you used a dependent drop down list? Please share your views with me in the comment section, I would love to hear from you.
And, please don’t forget to share this tip with your friends.