Hi Guys,
I have a function on Module.I'm planning to have a ActiveX combobox on sheet 1 with a list of values(ie : 1-1s etc) when the user selects any value that should trigger/invoke a function below is my code.
Private Sub ComboBox1_Change()
Set comboVal = ??
Select Case comboVal.Value
Case "1-1s"
Call scenario1
Case "2-1s"
Call scenario2
Case "3-1s"
Call scenario3
Case "6-2s"
Call scenario4
End Select
End Sub
I have a function on Module.I'm planning to have a ActiveX combobox on sheet 1 with a list of values(ie : 1-1s etc) when the user selects any value that should trigger/invoke a function below is my code.
Private Sub ComboBox1_Change()
Set comboVal = ??
Select Case comboVal.Value
Case "1-1s"
Call scenario1
Case "2-1s"
Call scenario2
Case "3-1s"
Call scenario3
Case "6-2s"
Call scenario4
End Select
End Sub