How to create drop down list with multiple selections or values in Excel?
By default, you can only select one item per time from a data validation drop-down list in Excel. How to make multiple selections from the drop-down list as below screenshot shown? The methods in this article can help you solve the problem.
Create drop down list with multiple selections with VBA code
Easily create drop down list with multiple selections with an amazing tool
More tutorial for drop down list...
Create drop down list with multiple selections with VBA code
You can apply the below VBA code to make multiple selections from the drop-down list in a worksheet in Excel. Please do as follows.
1. Open the worksheet you have set data validation drop-down list, right click on the sheet tab and select View Code from the context menu.
2. In the Microsoft Visual Basic for Applications window, copy the below VBA code into the code window. See screenshot:
VBA code: drop down list with multiple selections
Private Sub Worksheet_Change(ByVal Target As Range) 'Updated by Extendoffice 2019/11/13 Dim xRng As Range Dim xValue1 As String Dim xValue2 As String If Target.Count > 1 Then Exit Sub On Error Resume Next Set xRng = Cells.SpecialCells(xlCellTypeAllValidation) If xRng Is Nothing Then Exit Sub Application.EnableEvents = False If Not Application.Intersect(Target, xRng) Is Nothing Then xValue2 = Target.Value Application.Undo xValue1 = Target.Value Target.Value = xValue2 If xValue1 <> "" Then If xValue2 <> "" Then If xValue1 = xValue2 Or _ InStr(1, xValue1, ", " & xValue2) Or _ InStr(1, xValue1, xValue2 & ",") Then Target.Value = xValue1 Else Target.Value = xValue1 & ", " & xValue2 End If End If End If End If Application.EnableEvents = True End Sub
3. Press the Alt + Q keys to close the Microsoft Visual Basic for Applications window.
Now you can select multiple items from the drop-down list in current worksheet.
Notes:
- 1. Duplicate values do not allow in the drop-down list.
- 2. When closing the workbook, the VBA code will be removed automatically, and the multiple selection is unusable anymore. Please save the workbook as an Excel Macro-Enabled Workbook in order to keep the code working in the future.
Easily create drop down list with multiple selections with an amazing tool
Here highly recommended the Multi-select Drop-down List feature of Kutools for Excel for you. With this feature, you can easily select multiple items from the drop-down list in a specified range, current worksheet, current workbook or all opened workbooks as you need.
Before applying Kutools for Excel, please download and install it firstly.
1. Click Kutools > Drop-down List > Multi-select Drop-down List > Settings. See screenshot:
2. In the Multi-select Drop-down List Settings dialog box, please configure as follows.
- 2.1) Specify the applying scope in the Apply to section. In this case, I select Current worksheet from the Specified Scope drop-down list;
- 2.2) In the Text Direction section, select an text direction based on your needs;
- 2.3) In the Separator box, enter a delimiter which you will use to separate the multiple values;
- 2.4) Check the Do not add duplicates box in the Options section if you don’t want to make duplicates in drop-down list cells;
- 2.5) Click the OK button. See screenshot:
3. Please click Kutools > Drop-down List > Multi-select Drop-down List to enable the feature.
Now you can select multiple items from the drop-down list in current worksheet or any scope you have specified in step 2.
If you want to have a free trial ( 30-day) of this utility, please click to download it, and then go to apply the operation according above steps.
Related articles:
Autocomplete when typing in Excel drop down list
If you have a data validation drop down list with large values, you need to scroll down in the list just for finding the proper one, or type the whole word into the list box directly. If there is method for allowing to auto complete when typing the first letter in the drop down list, everything will become easier. This tutorial provides the method to solve the problem.
Create drop down list from another workbook in Excel
It is quite easy to create a data validation drop down list among worksheets within a workbook. But if the list data you need for the data validation locates in another workbook, what would you do? In this tutorial, you will learn how to create a drop fown list from another workbook in Excel in details.
Create a searchable drop down list in Excel
For a drop down list with numerous values, finding a proper one is not an easy work. Previously we have introduced a method of auto completing drop down list when enter the first letter into the drop down box. Besides the autocomplete function, you can also make the drop down list searchable for enhancing the working efficiency in finding proper values in the drop down list. For making drop down list searchable, try the method in this tutorial.
Auto populate other cells when selecting values in Excel drop down list
Let’s say you have created a drop down list based on the values in cell range B8:B14. When you selecting any value in the drop down list, you want the corresponding values in cell range C8:C14 be automatically populated in a selected cell. For solving the problem, the methods in this tutorial will do you a favor.
The Best Office Productivity Tools
Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%
- Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
- Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
- Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
- Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
- Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
- Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
- Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
- Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
- More than 300 powerful features. Supports Office/Excel 2007-2019 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.

Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
