Re: Combo Boxes
hi Z,
first of all i don't think you can multiselect a combobox,
you can achieve that with a listbox
in VBE, place a listbox on a userform and set it in the Properties > Multiselect >
1-MulltiSelectMulti
double click the userform and place this module:
Code
Private Sub UserForm_Initialize()
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
With Me.ListBox1
.AddItem ws.Name
End With
Next
End Sub
hope this helps