Reputation: 1299
In a spreadsheet, if I want to create a list of items for a dropdown for a user to select, is it possible to do a multi-select with checkboxes?
Something like
_ Item A
_ Item B
_ Item C
...
_ Item Z
and after selection
_ Item A
X Item B
...
X Item Z
and in another cell (or cell in other worksheet), have a comma separated list
B,Z (or 2, 26 for the values)
Upvotes: 1
Views: 22226
Reputation: 5739
I had exact same requirement, additionally need to support unselect as well. Hecen, I have posted a working solution of Spread-sheet with Multi drop-down with comma(,) separated values in spread sheet cell. I though of sharing here, as could be helpful to others.
Here is stack-overflow link of the question/solution.
Upvotes: 0
Reputation: 381
There are a few ways to do multi-select. You can use an ActiveX list box if configured properly. A form control list box does multi-select but without checkboxes. You can also use regular checkboxes. Here's a good overview of all the available form controls: http://office.microsoft.com/en-us/excel-help/overview-of-forms-form-controls-and-activex-controls-on-a-worksheet-HA010237663.aspx#BMactivex_controls_on_the_control_toolb
Upvotes: 1