The dropdowns are great tools for either increasing the end-user experience or limiting the end-user with specific options to select from. You can use Data Validation Lists to create your own dropdowns in Excel. In this guide, we are going to show you how to create a dropdown list in Excel in 3 different ways.

Download Workbook

Data Validation Lists

Before starting to create a dropdown list, let's check out how you can access Data Validation dialog and select correct options to generate a dropdown.

While a cell in a worksheet is selected, activate Data tab in the Ribbon. Click the Data Validation icon in the Data Tools section.

In the Data Validation dialog, remain in the Settings tab. Select List option in the Allow dropdown. This action makes the Source input box visible.

From this point, we are ready to set items for our dropdown. We can use the Source input to type items manually or enter a reference to a list of items in the workbook. An alternative use of the Source input is entering a formula that can generate a list array of items.

After setting source, clicking OK to create a dropdown list in Excel.

Static values

The first method is to enter the items one-by-one by typing into the Source input box. Separate each item with a comma (,).

This method is faster if you have fewer items to list. On the other hand, you strict yourself with the Data Validation dialog when you need to update these items. The following approaches offers more versatile ways.

Data from Reference

The next method is the probably most common method to create a dropdown list in Excel. You can actually enter a reference of a range that contains a list of items.

Note that, the range should contain a single row or a column. You cannot use a range which has both multiple rows and columns.

There are a few ways to enter a reference into the Source box:

  1. Typing the reference manually: Just type the reference of the range. For example, =Dropdown!B3:B8. Use the exact same syntax which you use in the formulas.
  2. While the Source input is active, use your mouse to select the range you want. You can understand if the Source input is active by looking at the cursor. If you see the cursor flashing in the input box, you are good to go.
  3. Similarly, you can click the icon at the right side to activate the range selector.
  4. If you are using named ranges in your workbook (actually we recommend this approach), Press F3 key on your keyboard to open Paste Name The Paste Name dialog lists the names in your workbook. Double-click the name you want to select. Aside from other advantages of using named ranges, you do not need to open the Data Validation tool to update the list. Once the named range is updated, you will get the updated list as well.

This is how it looks:

Create a dropdown list by Excel Formula

The final approach is a using an Excel formula to populate a list items dynamically. This approach also works with dropdowns dependent other inputs or dynamic-sized dropdowns.

In our example, we demonstrated a common use case, creating a dynamic dropdown with INDIRECT function. We have two lists of Pokémon names. While one list contains Fire types, the other has Water types. Both lists are named as "Fire" and "Water" based on to their contents. As you know the INDIRECT function returns the reference given as string. As a result, =INDIRECT("Water") formula returns the named range Water.

If you use a cell reference instead of static "Water", you will get a dropdown list updated by the cells value. In our example, we used the following formula which calls the named range entered in Type:

With this setting, the dropdown list contains Fire type Pokémon's if the Type is "Fire".

Create a dropdown list

In this guide, we summarized how to create a dropdown list in Excel with 3 different ways.