How to Create Drop Down List with Filter in Excel (7 Methods)

In Microsoft Excel, data entry becomes faster when we use a drop-down list filter. Filters may be used to filter down and conceal sections of our worksheet’s data. In this article, we will demonstrate how to create Excel drop down list filter.


Filtering differs from grouping in that it allows us to qualify and show just the information that is relevant to us. Let’s have a look at some easy ways to create Excel drop-down list filter.

1. Creating a Drop Down List in Excel

In this method, we will see how we can create a drop-down list filter. For this, we are going to use the dataset below. The dataset contains some candidate names in column B. Now, we want to make a list of the candidates if they are selected or not in column C. We will create a drop-down list filter to get the work done easily. To do this, we need to follow the steps below.

Create a Drop Down List

  • First, select the cells where we want to create the drop-down list filter.
  • Second, click on the Data tab on the ribbon.
  • Third, we need to go to the Data Validation drop-down menu.
  • Fourth, select the Data Validation from the drop-down menu.

Create a Drop Down List

  • This will open up the Data Validation dialog box.
  • In the Settings option, we can see the Validation criteria.
  • Now, click on the drop-down menu under Allow.
  • By default, Any value is selected. We will change it to List.

  • This will show a box named Source. We will write Yes, No, Not Decided Yet in the source box.
  • Then, click on the OK button.

Create a Drop Down List

  • Finally, we can see the result. Our selected cells are now drop-down list boxes.
  • Now, we can easily make a list of who is selected.

Create a Excel Drop Down List Filter

  • If we need to make changes to data, we can quickly do that.

Create a Excel Drop Down List Filter

Read More: How to Make a Drop Down List in Excel


2. Creating Excel Drop Down List Filter to Extract Data

In this method, we will see how to extract data or filter data based on a drop-down list selection in Excel. So, here we have a dataset that contains some product id in column B, the name of the products in column C, and the county name in column D.

Excel Drop Down List Filter to Extract Data

2.1. Making a List of Unique Items

We will make a unique list of the countries. To do so, let’s have a look at the steps below.

STEPS:

  • Firstly, select the counties which are in column D.

Excel Drop Down List Filter to Extract Data

  • Secondly, paste the selected countries at any of the other cells in the worksheet.

Excel Drop Down List Filter to Extract Data

  • After that, go to the Data tab from the ribbon.
  • Then, click on Remove Duplicates.

Excel Drop Down List Filter to Extract Data

  • This will appear in the Remove Duplicates dialog box.
  • Now, check whether the column we want to make the unique list is selected or not.
  • Then, click OK.

  • A pop-up window will appear, confirming that the duplicate values were removed from the selected column.

  • In the end, we can see that 2 duplicate values are removed and 4 unique values are remaining.


2.2. Putting Drop Down Filter to Show Unique Items

To show the unique values in a drop-down list filter we need to follow the same as shown.

STEPS:

  • In the beginning, go to the Data tab.
  • After that, click on the Data Validation drop-down menu.
  • Now, select Data Validation.

Excel Drop Down List Filter to Extract Data

  • The Data Validation dialog box will appear.
  • At this moment, select List from the drop-down.

Put a Drop Down Filter to Show Unique Items

  • Next, click on the upper arrow in the Source section.

Put a Drop Down Filter to Show Unique Items

  • Now, select the unique values that we have generated.
  • Hit Enter.

Put a Drop Down Filter to Show Unique Items

  • At this time, we can see that the selected unique values are in the source section.
  • Click OK.

Put a Drop Down Filter to Show Unique Items

  • By doing this, the drop-down list is now shown in I2.

Put a Drop Down Filter to Show Unique Items

Read More: How to Create a Drop Down List with Unique Values in Excel


2.3. Using Helper Columns to Extract the Records

We need Excel to identify the records automatically that corresponds to the selected item as soon as we make a drop-down selection. For this, we need three helper columns. Let’s look at the steps below how we can do this.

STEPS:

  • In the first helper column, we need the row number for each of these cells. So, E5 would be row number 1 in the dataset and E6 would be row number 2, and so on. To do this, we can manually hard code or use the ROWS function.
  • ROWS formula takes the input as an array and returns the number of rows between the two cell references. In our example, in cell E5, there is only one row.
  • Lock the first cell by pressing F4 or putting ($) dollar sign.
  • Now, write down the formula.
=ROWS($D$5:D5)

  • Then, press Enter.
  • Now, drag the fill handle to copy the formula to show all the rows.

Excel Drop Down List Filter to Extract Data

  • We can see that the cells are incremented by one because from D5 to D6 we have two rows and so on.

Excel Drop Down List Filter to Extract Data

  • Now, let’s create a helper column two which only shows those row numbers which match the country that we have selected in I2. We want those row numbers which have Bangladesh. So the helper column will show 1 and 4. To do that, we will use an IF condition.
  • And, the condition is
=IF($I$2=D5,E5,"")

Excel Drop Down List Filter to Extract Data

  • Now, drag the fill handle down to show the numbers.

  • If we change the country, we can see the helper 2 columns will show the row number that contains the country.

  • After that, we need another helper column in which all the numbers in helper column 2 will stack up together. Actually, we don’t want the gap in between. For this, we use the SMALL formula.
  • Now, write down the formula below.
=SMALL($F$5:$F$10,ROWS($F$5:F5))

Excel Drop Down List Filter to Extract Data

Here, we use ROWS($F$5:F5) to return the first smallest value.

Excel Drop Down List Filter to Extract Data

  • To avoid the error we will write the formula below.
=IFERROR(SMALL($F$5:$F$10,ROWS($F$5:F5)),"")

Excel Drop Down List Filter to Extract Data

The IFERROR function will remove the error.

  • Finally, when we drag the fill handle, the row numbers will show properly.

Excel Drop Down List Filter to Extract Data

  • Now the final steps, the new three columns show the selected countries’ product IDs and product names. To do so, we will use a simple the INDEX function that returns the product id as per the selected country.
  • Now, in cell K5, write down the formula.
=INDEX($B$5:$D$10,$G5,COLUMNS($H$5:H5))

In the COLUMNS($H$5:H5), select the same column which is in the left parenthesis of the worksheet.

  • Again, we can see that the #VALUE! error is showing up.

  • To remove the error, we use the same as before, the IFERROR function.
  • Instead of the previous formula now we will write.
=IFERROR(INDEX($B$5:$D$10,$G5,COLUMNS($H$5:H5)),"")

  • Finally, drag the fill handle over K5:M10.
  • And, all the steps are done.

Excel Drop Down List Filter to Extract Data

  • If we change the country from the drop-down filter list, we can see that the right-sided table changes automatically.


3. Sorting And Filtering Data from Excel Drop Down List

In Excel, there are lots of exciting tools that we can use in our daily work. Sort and Filter toolbar is one of the features we can easily make a drop-down list filter in our data. Likewise the above methods, We are going to use the same dataset, with product ID, product name, and country.

3.1. Creating Drop Down List Using Sort and Filter Feature

Let’s see how to use the sort and filter toolbar. For this, we need to follow the steps below.

STEPS:

  • At first, select the headers of the dataset.
  • Then, from the Data tab on the ribbon, click on Filter which is in the Sort & Filter section.

Excel Sort And Filtering Data from Drop Down List

  • This makes all the headers drop-down filter arrow.
  • Now, click on any of the headers that we want to filter out.
  • So, we click on the Product ID drop-down arrow to filter out the products.
  • Now, uncheck the data we don’t want to view.
  • Then, click on the OK button.

Excel Sort And Filtering Data from Drop Down List

  • Finally, we can see the result. All the unchecked products are now disappeared from the dataset. All the unchecked data are temporarily hidden now.


3.2. Adding New Filter

To add new filters in the same dataset just follow these steps.

STEPS:

  • In the first place, click the drop-down arrow where we want to add new filters. We will click on the country.
  • In the second place, uncheck all the other countries we don’t want to view.
  • Then, click OK.

Excel Sort And Filtering Data from Drop Down List

  • Now, we can see only the products from the country Bangladesh are now coming out. Others are temporarily hidden.


3.3. Clearing Existing Filter

If we need to clear the existing filter, we can simply clear those filters by following the steps.

STEPS:

  • First, click on the header drop-down arrow which is filtered. We want to clear the filter from product identification.
  • Now, click on Clear Filter From “Product ID”.

  • And, that’s it. The drop-down list filters are removed now.

Read More: How to Add Item to Drop-Down List in Excel


4. Filtering Data in Excel Using Search

By the same token, now we will see the drop-down data filtering using search. For this, we are using the same dataset as shown in the earlier methods.

STEPS:

  • Primitively, select all the headers we want to make a drop-down box.
  • After that, go to the Data tab > click on Filter.

  • To filter a column, click the drop-down arrow in that column. We want to filter the product name column.
  • Next, in the search box shown in the picture write down the product name we want to see. We want to see only the product name Shampoo.
  • Then, click OK.

  • And, now we can see that it will display only the data that contains the product name, Shampoo.

Excel Sort And Filtering Data from Drop Down List


5. Applying Text Filters in Excel Drop Down List Filter

To view the data more specifically, we can use text filters.

STEPS:

  • To construct a drop-down box, choose all of the headings of the dataset.
  • Then, go to the Data tab and select Filter.

Excel Sort And Filtering Data from Drop Down List

  • After that, click on the drop-down arrow, in the column of the text we want to filter. We click on the country column.
  • Then, go to the Text Filters > Do Not Contain.

Excel Sort And Filtering Data from Drop Down List

  • At this point, a Custom AutoFilter dialog box will appear. Suppose we don’t want to contain any data with Canada. So, we select Canada.
  • Then, OK.

  • Now, we can see that all the data is hidden, containing the country Canada.

Read More: How to Auto Update Drop-Down List in Excel


6. Using Number Filtering in Excel Drop Down List Filter

To manipulate numbers, we can use Number Filters. For this, we are going to use the dataset below.

STEPS:

  • Correspondingly to the previous methods, select the headers.
  • Go to Data tab > click on Filter.

  • Click on the drop-down arrow of the column only which contains the numbers. We will click on product identification.
  • Now, from Number Filters, select Between. Cause we want to see the product in between 105 -110.

Excel Sort And Filtering Data from Drop Down List

  • This will open up the Custom AutoFilter dialog box.
  • Now, take the numbers we want to display.
  • Then, click OK.

  • Finally, the products id between 105-110 is displayed now, and others are hidden from the data.


7. Using Date Filters in Excel Drop Down List

To view the data in a certain time period, we can use the date filter. To do this, we will use the dataset below which is similar to the previous one but also has a delivery date column. So, let’s look at the steps.

STEPS:

  • Likewise, the other method, select the headers.
  • From the Data tab, click on Filter.

  • Click on the Delivery date drop-down arrow.
  • Go to Date Filters. We want to display only the product which was delivered last month. So we have selected last month.

  • Finally, we can see that all the products are displayed now which we delivered in the last month.

Excel Sort And Filtering Data from Drop Down List


Download Practice Workbook

You can download the workbook and practice with them.


Conclusion

In this article, we have learned about the Excel Drop Down List Filter. Hope this will help you! Please let us know in the comment section if you have any questions, suggestions, or feedback.


Excel Drop Down List Filter: Knowledge Hub


<< Go Back to Excel Drop-Down List | Data Validation in Excel | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Sabrina Ayon
Sabrina Ayon

Sabrina Ayon, a Computer Science and Engineering graduate from United International University, has been an integral part of the ExcelDemy project for two years. She authored 150+ articles, excelling in instructing through visually engaging Excel tutorials. With a passion for teaching, Sabrina conducted sessions on Excel VBA, sharing her knowledge and insights with others. Currently holding the position of Project Manager for the ExcelDemy Visual Development Project, she oversees various aspects of the project, ensuring its smooth operation... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo