How do I access the SelectedIndex of an ActiveX combobox object in Excel? I need an integer.
I think combo.ListIndex is the property you're looking for...
combo.ListIndex
The .ListIndex property works if only one item is selected, however, you need to browse the .Selected collection if you allow multiple selections.