Excel Drop Down List using Data Validation and Excel Tables that updates dynamically – How To

Excel drop down lists are one easy way to keep your data error free and other benefit it is that it automates data entry to some extent. Data validation help us make such drop down lists easily.

For those who are unaware of data validation tool and data validation lists then it is a technique by which you can control the input by providing a drop-down list to the user from which it can select the input. This way errors and unnecessary modifications at the data is punched into the excel file are kept out of the system.

To learn about simple data validation and data validation lists I recommend reading this introductory article on this feature as it explains how to build data validation lists.

Simple Vs Dynamic

Dynamic data validation lists is an advanced use of data validation list in a way that it updates if the underlying data grows or shrinks. For example if you have products and have them listed in a data validation list. Now if you add or delete products in that list, data validation list will not update especially for new items added to the list.

Following animation reproduce this problem:

dynamic 1

To cater this problem that list grows as the number of products grow we use dynamic data validation lists and not simple data validation lists.

A word about example

We have an invoice template in which we select products through drop-down list. What we want is that if new items are added, they must be available in the drop down list automatically and we don’t have to recreate data validation list from scratch. This is achieved using dynamic data validation lists. Read on to learn how to get this done.

Excel Tutorial Workbook
For the purpose of this tutorial you need to download this excel file to best understand how to apply the techniques learnt in this tutorial

Making dynamic data validation lists using Excel Tables

Basic concept

One of the biggest charms of using Excel tables is that it converts an ordinary range of data in to a dynamic range i.e. Excel tables has the ability to grow or shrink with the data. Data being this capable when fed to most of the Excel features like Data validation or pivot tables they update they are able to update the end result if the underlying data changes.

To learn more benefits of using Excel tables don’t forget to read one of the favourite articles of visitors 20+ Excel Table Tricks

Step-by-step

Step 1: Download and tutorial workbook that comes with this article. Click Product list worksheet tab to make it active.

Step 2: Have an active cell within range to select the products and price per unit. Once range is selected hit shortcut Ctrl+T to convert the range into Table. You can have this done by going to Insert Tab > Tables group > click Tables button. In the dialogue box that appears make sure “My data has headers” is checked. Click OK. Range is now an Excel table.

dynamic 2

Step 3: Having the active cell inside table, click Design tab and go to properties group. Change the name of table to productslist. Make sure there are no spaces in the name. Press Enter to confirm the name. Now your table is named ‘productslist’.

dynamic 3

Step 4: Hit Ctrl+F3 to bring Names manager dialogue box up. Click New button. A new dialogue box to define new name will appear. In the name field write product. Click once in the ‘refers to’ field to make it active and revert back to table to make the selection. Select the “Products” column of the table completely. You will notice that reference is something like this: =productslist[Products]. This is a structured reference. This referencing system is available only with Excel Tables. ‘productslist’ is the name of table and [Products] represent the ‘Products’ of the table.

dynamic 4

Structured reference is the real fuel in making Excel table truly dynamic. As you can see while defining name we didn’t mention any static range like A2:A8 (which it should be in our case) instead it is tablename[columnname]. With this address whatever goes in that column now will get counted as it is independent of rows because they are not specified.

Step 5: Go to Invoice worksheet and make cell C14 active. Click Data tab > Data tools group > click Data validation button.

Step 6: Stay in the settings tab and from the Allow list select ‘list’.

Step 7: Click once in Source field and hit F3 key to invoke paste name dialogue box. Select product from the options and click OK. This will paste the name in the source field. The same one we defined earlier in step 4. Click OK again. This will insert drop-down list in place.

dynamic 5

Step 8: To make Excel fetch the price of the product selected from the validated list, put this formula in cell D14:

=IFERROR(VLOOKUP([@Description],productslist,2),"")

Step 9: In the amount field put the following formula to calculate the total amount for specific product:

=IFERROR([@[Price/unit]]*[@Qty],"")

dynamic 6

Your invoice template is ready for action with dynamic data validation list. Just put in the date, select the product and mention units and everything else is all set in place.

To test if the product list gets updated or not. Go back to product list worksheet and add a new product with the name ‘Tic Tac’ with the price 900. Go back to invoice worksheet and check if the drop-down list now also list Tic Tac and its there! You have just excelled massively on data validation lists!

Things learnt in this tutorial
1. What dynamic validation lists are

2. A little idea about Excel Tables Structured Reference

3. How to write Excel formula using structured references

4. Using IFERROR to hide unnecessary errors

Whats Next?

6 COMMENTS

  1. Pravinchandra V Patel Pravinchandra V Patel

    This is very Useful
    But in some cases price will be changed with products selection.
    and also when price of product change how it can be changed

  2. Hello, thank you for this lecture. I have a question.

    How do I update a products price if it increases?

    I noticed that when I update a product price, the entire data of the past products price in the source data changes.

    Is it not possible to update new products price while data of old products price are maintained in the same source data?

  3. Dear Sir above assignment is very helpful
    I have Little bit confused of inferior formula
    Plz tell me how does it work

  4. Only Ben10 Result is exact
    Swat Cats
    Jenny Quest is not fine
    please help

  5. Dear Hasaan Fazal,

    The above assignment is Really Helpful.

    But I am a little bit confused with the usage of iferror function as if our requirements can be met by simple formula then why we use iferror function.

    I hope you will explain the purpose of above said function to me with an illustration(at least).

    Your prompt reply on the above email will be highly appreciated.

    Thanks.

    Regards
    Muazzam Ali

  6. i want to learn

Comments are closed.