Day(s)

:

Hour(s)

:

Minute(s)

:

Second(s)

How To Create A Drop Down List With Dynamic Content

In this post we will explore how to create a drop down list with dynamic content. This means the content of the drop down list will depend on another selection and some set of data. In our example we have a set of product order data that contains a customer ID, and order ID and the ordered item description. What we want to be able to do is enter a customer ID in a cell then in another cell have a drop down list of the items this customer has ordered (and only their items). We also want this all to update effortlessly as we add new rows to our order data or if we enter a different customer ID into our first cell.

Copy and paste into cell A1

CustomerOrderItem
11Ball
12Hat
13Cup
21Coffee
22Tea
31Phone
41Cake
42Soap
43Door

 

step-001-how-to-create-a-drop-down-list-with-dynamic-content

 

First, we’re going to turn our data into a data table so we can reference it with named ranges. This will allow things to update automatically when we add data to our table.

  1. Select a cell in data range or highlight the whole range of data.
  2. Go to the Insert tab in the ribbon.
  3. Under the Tables section click Table.
  4. Make sure the range is correct and click OK.
  5. Now lets also add a named range for our customer input. First select the cell.
  6. Type in the name Customer into the name box.

 

step-002-how-to-create-a-drop-down-list-with-dynamic-content

 

Creating a data table will automatically give the data a named range (something like Table1), so we’ll change the name to something more meaningful next.

  1. Go to the Formulas tab in the ribbon.
  2. In the Defined Names section click Name Manager.
  3. Select the data table you previously created.
  4. Click on the Edit button.
  5. Change the name to Orders.
  6. Press the OK button.

 

step-003-how-to-create-a-drop-down-list-with-dynamic-content

 

Now we will add an extra column into our data table.

  1. If you haven’t already done so, change the name to the customer input cell to Customer.
  2. Add a column to the data table by typing the formula =IF([@Customer]=Customer,"Y","N") into cell D2. This formula should copy down automatically and a new column heading will be created (something like Column1). Change this heading to something more meaningful like Include by simply typing into the cell.
  3. This formula =IF([@Customer]=Customer,"Y","N") should appear in each cell in the new column. Check to make sure.

 

step-004-how-to-create-a-drop-down-list-with-dynamic-content

 

Now we will add a data connection to query our data table and return only the rows of data with Include = Y (i.e. only the rows of data pertaining to a given customer). Before doing this save your workbook.

  1. Go to the Data tab in the ribbon.
  2. In the Get External Data section click the From Other Sources button and then choose From Microsoft Query.
  3. Select Excel Files.
  4. Hit the OK button.

 

step-005-how-to-create-a-drop-down-list-with-dynamic-content

 

Select this workbook from wherever you saved it and hit the OK button.

 

step-006-how-to-create-a-drop-down-list-with-dynamic-content

 

Now we will create our query.

  1. If you don’t see any available tables and columns, you may need to enable system tables. Hit the Options button.
  2. Tick the System Tables box.
  3. Hit the OK button.
  4. Now you should see you sheet with a list of the column headings in your data table.
  5. Bring over these columns into the “Columns in your query” section by highlighting them and clicking the right arrow button.
  6. Click the Next button.

 

step-007-how-to-create-a-drop-down-list-with-dynamic-content

 

The next screen will allow you to query only the rows pertaining to the customer selected.

  1. Highlight the Include column in the “Column to filter” section.
  2. Select equals from the drop down.
  3. Select Y from the drop down.
  4. Hit the Next button.

 

step-008-how-to-create-a-drop-down-list-with-dynamic-content

 

The next screen will allow you to order your query results. For our purposes we don’t need to do this, but it may be helpful to see the orders listed in ascending order in the drop down list we’ll make later so we can add that here. Otherwise, click the Next button.

 

step-009-how-to-create-a-drop-down-list-with-dynamic-content

 

Now choose where your new queried data will appear in your workbook.

  1. Select Data to appear in a table.
  2. Select the address in the current sheet. The cell you select will be the upper left most cell of the data, so make sure there is enough room below and to the right of this cell.
  3. Hit the OK button.

 

The resulting data will be named something like “Table_Query_from_Excel_Files”, rename this to “Query” using the same method that we renamed our original set of data with.

 

step-010-how-to-create-a-drop-down-list-with-dynamic-content

 

Now let us create the order drop down list.

  1. Select the cell where you want this drop down list.
  2. Go to the Data tab in the ribbon.
  3. In the Data Tools section select Data Validation.
  4. Select list from the drop down.
  5. Type =indirect("Query[Item]") into the field. Note, we had renamed our resulting data from Table_Query_from_Excel_Files to Query
  6. Hit the OK button.

 

step-011-how-to-create-an-drop-down-list-with-dynamic-content

 

Now when we change the customer and refresh our query, the order drop down list will update with the relevant items.

About the Author

John MacDougall

John MacDougall

John is a Microsoft MVP and qualified actuary with over 15 years of experience. He has worked in a variety of industries, including insurance, ad tech, and most recently Power Platform consulting. He is a keen problem solver and has a passion for using technology to make businesses more efficient.

Subscribe

Subscribe for awesome Microsoft Excel videos 😃

John MacDougall

I’m John, and my goal is to help you Excel!

You’ll find a ton of awesome tips, tricks, tutorials, and templates here to help you save time and effort in your work.

Related Posts

37 Awesome Excel Mouse Tips & Tricks You Should Know

37 Awesome Excel Mouse Tips & Tricks You Should Know

While the keyboard is generally quicker, you shouldn’t completely ignore the mouse. There are also some great time saving mouse shortcuts as well. In this post we’ll take a look at some of the best Excel mouse time saving tips and tricks.

read more
25 Amazing Power Query Tips and Tricks

25 Amazing Power Query Tips and Tricks

Power query is amazing tool that allows you to import and transform data with ease and helps to create repeatable and robust procedures with your data. Here are some tips and tricks to help you get the most out Power Query.

read more

Comments

1 Comment

  1. Gnaneshwar Gaddam

    Nice Tutorial

Get the Latest Microsoft Excel Tips

Follow Us

Follow us to stay up to date with the latest in Microsoft Excel!

Subscribe for awesome Microsoft Excel videos 😃