I have a thousands of cells in an Excel worksheet which are ComboBoxes. The user will select one at random and populate it.
How do I get the selected ComboBox value?
A simpler way to get the selected value from a ComboBox control is:
Private Sub myComboBox_Change() msgbox "You selected: " + myComboBox.SelText End Sub