https://github.com/tserious/excelmultivaluecombobox
Create a combo box with multiple selectable values
https://github.com/tserious/excelmultivaluecombobox
Last synced: 3 months ago
JSON representation
Create a combo box with multiple selectable values
- Host: GitHub
- URL: https://github.com/tserious/excelmultivaluecombobox
- Owner: TSerious
- License: mit
- Created: 2022-02-02T12:22:12.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-30T14:11:47.000Z (over 3 years ago)
- Last Synced: 2025-01-13T18:50:18.217Z (over 1 year ago)
- Language: VBA
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ExcelMultiValueComboBox
Create a combo box with multiple selectable values
## Usage
### 1. Enable Developer Tab in Ribbon Menu
- Right click in the (Ribbon) menu at the top and click "Customize the Ribbon...".
- On the right side (Customize Ribbon) with "Main Tabs" selected, enable the checkbox "Developer".
- Click OK.
### 2. Copy the code
- Go to the "Developer" Tab (in the Ribbon menu) and click "Visual Basic".
- Right click on the worksheet (on the left side) where you want to use a Multi-Value-Combobox and select "View Code".
- Copy the code (everything) from Code.vba into to open document.
- Save and close the editor.
### 3. Create a Combobox
- Select a cell (or multiple cells) that you want to have a Multi-Value-Combobox.
- Go to the Tab "Data" (in the Ribbon menu) and click on "Data Validation" -> "Data Validation".
- In the "Data Validation" dialog (that just opened) in the "Settings" Tab set "Allow: List" and "Source" to a range of the allowed values.
- Click OK.