Forum Discussion
creating a multi selection dropdown list
Hi
I'm fairly new to excel, but I'm trying to create a dropdown list where several options may apply. I created my list of options in a fresh sheet, but I don't know to link it to the cell on my main sheet. I found the support post linked below, but it talks about a controls task pane, which seems to be different from the controls ribbon under the developer tab, because it's leading me to buttons I am not seeing.
feeling frustrated and dumb, any help would be greatly appreciated, thanks
Also see Excel Data Validation - Select Multiple Items
Clear instructions, a free sample workbook, and links to articles with further options.
- SnowMan55Bronze Contributor
The article to which you provide a link is not applicable to Excel, but to an old Microsoft product called InfoPath (note the references just below the article title) that creates user data entry forms.
The most direct solutions involve VBA code, which cannot be used with Excel on the web or for the mobile versions. Also, using VBA code opens you to the possible insertion of malware. Consider that seriously.
Depending on what you are trying to accomplish, some design that does not use a multi-selection dropdown list may be possible. So:
- Is this Excel solution going to be used by just you? Or by other people (or both you and others)?
- Is the number of selectable items small (say, a dozen or fewer) or large? Are the items basically static, or dynamic?
- On a broad level, what do you expect to happen when the user selects one or more entries? E.g., a subset of some data will be displayed, or the user selections will be recorded into a cell.
If you are trying to record multiple values into one cell, VBA might be the best choice. I do not see any Microsoft documentation regarding this that I would recommend (even their guest blogger article is old and now incomplete). So consider these:
- Sharon Smith video; code included in video description
- Chester Tugwell video; links to another page with a downloadable (and therefore potentially dangerous) macro-enabled workbook
- Ablebits.com article; code shown on this page
Also see Excel Data Validation - Select Multiple Items
Clear instructions, a free sample workbook, and links to articles with further options.