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?
You can use the below change event to which will trigger when the combobox value will change.
Private Sub ComboBox1_Change() 'your code here End Sub
Also you can get the selected value using below
ComboBox1.Value