How to be able to select multiple options from a drop-down list in excel.

How to Create Multi-choice dropdown otpions in Excel

You have mastered creating drop downlists in excel (If you have do not worry we will link out blog post on how to do this at the bottom of this post)

But now you want to select multiple options from that list.

You may have already looked into this and seen it involved VBA code and thought nope too much for me.

A Boardroom Mum has got you it does involved VBA code but it is super simple!

Lets walk though how to create multiple selection options from a drop down list in excel.

Steps 1 & 2 fully broken down in post – How to create drop down lists in Excel.

Write down a list.

Click Ctrl + T to make it a table.

Name the table

From the top ribbon

Click Data 

Choose Data Validation 

Under allow choose List.

Under source type =INDIRECT(“nameofyourtable”)

Click ok.

Right click the spreadsheet tab and choose view code

Copy the VBA code below and paste it into this worksheet.

In the cell that is linked to data validation you are now able to choose multiple options.

Bonus Format – Want to separate each item with a | no a ,?

Go back to the code – Right click the spreadsheet tab and click view code.

Where the code says DelimiterType = “, “

Change the , to a |

🎉