How to Create Drop-down List in Excel with Multiple Selections

If you just need to create drop-down list in excel with multiple selections and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: a standard Data Validation list stores one value per cell, so multiple selection needs a workaround — most commonly a Worksheet_Change macro that appends each new pick to the existing text (desktop Excel, saved as .xlsm), or one checkbox or helper column per option combined with TEXTJOIN.

On this page7
Annotated stepsExcel
1

Create the normal list first: Data ▸ Data Validation ▸ Allow: List with your options.

2

Right-click the sheet tab, choose View Code, and add a Worksheet_Change procedure limited to the list range.

3

In it, turn events off, capture the new value, use Application.Undo to read the previous value, and write both joined with ", ".

4

Turn events back on (also in an error handler), then save the workbook as .xlsm.

5

Without macros: give each option its own column of checkboxes or Yes/No cells and combine the ticked ones with =TEXTJOIN(", ",TRUE,IF(C2:E2=TRUE,$C$1:$E$1,"")) (TEXTJOIN needs Excel 2019 or later; in versions without dynamic arrays confirm this IF-array formula with Ctrl+Shift+Enter).

Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

Data Validation lists are single-selection by design: choosing a second item replaces the first. There is no setting in the Data Validation dialog that changes this. To collect several choices in one cell you need something that remembers the previous value — an event macro that runs after each pick and joins old and new values — or a layout that stores each option separately and combines them with a formula. The macro route keeps the familiar arrow but only runs where VBA runs. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “create drop-down list in excel with multiple selections”. Start on a copy or a tiny sample, keep the affected list visible, and compare the result with the tool above before you touch the real workbook. When this is a ribbon command, the selection matters more than the button: confirm the range, apply the command, then spot-check the output before saving. The point is a layout choice that keeps the sheet readable and sortable, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

Column B (B2:B100) has a list of Red, Green and Blue. With the macro below in the sheet's code module, picking Red and then Blue in B2 leaves "Red, Blue" in the cell. The macro: Private Sub Worksheet_Change(ByVal Target As Range) — if Target is one cell inside B2:B100, set Application.EnableEvents = False, store the new value, call Application.Undo to read the old value, write old & ", " & new (or just new when the cell was empty), then set Application.EnableEvents = True. Tags, skills and categories often need more than one value per row. Knowing that the standard list cannot do it saves time hunting for a setting, and choosing between a macro and a helper layout depends on where the workbook will be used. When the result is not what you expected, undo straight away rather than repairing it by hand — undo restores the sheet exactly, while manual fixes tend to leave small inconsistencies behind that surface later.

In Google Sheets

Google Sheets does not run VBA. A macro written for Excel has to be rewritten in Google Apps Script (Extensions ▸ Apps Script), and an .xlsm file converted to Sheets keeps its cells but drops the code. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. Treat “create drop-down list in excel with multiple selections” as a routine rather than a one-off. Once you know which setting or command controls it, the same few steps handle every workbook where it comes up in Excel, and you can explain them to a colleague in a sentence.

Common mistakes

  • Looking for a "multiple selection" option in the Data Validation dialog — there is none.
  • Forgetting Application.EnableEvents = True in an error path, which silently stops every event macro in the workbook.
  • Saving as .xlsx, which strips the macro.
  • Expecting the macro to run in Excel for the web, the mobile apps or Google Sheets — VBA does not run there.
  • Selecting the same item twice and getting it twice; add a check with InStr if duplicates matter.

Frequently asked questions

Can Excel's Data Validation allow multiple selections natively?

No. A Data Validation list holds one value per cell; multiple selection needs a macro or a separate layout.

Does the combined value break the validation rule?

Validation only checks typed entries, so a value written by the macro is kept even though "Red, Blue" is not in the list.

How do I count or filter cells with several selections?

Use a wildcard: =COUNTIF(B:B,"*Blue*") counts cells that include Blue among their selections.

Other ways people ask this

On the way here you may have searched this as “how do i make a selection picker in excel”, “select multiple items from drop down list excel without vba”, “excel drop down box multiple selections” and “excel multiple choice drop down” — it is all the same task, and this page is the single, complete answer to it.

Why do people search for this in so many different ways?

Because the same task has many names. “how do i make a selection picker in excel”, “select multiple items from drop down list excel without vba”, “excel drop down box multiple selections” all point at the one operation explained on this page, which is why they all lead here.