I'm trying to run a combobox activex with three values "AD", "LN", and "RSA" these values run each a different Macro. The thing I can't do it work. Whenever I select any option I get the error "Object doesn't support this property or method" in the line Select Case .List. Any ideas? This is the code.
Private Sub ComboBox1_Change()
With ThisWorkbook.Sheets("Operations").Shapes("ComboBox2").ControlFormat
Select Case .List
Case "AD": AD_Email
Case "LN": LN_Email
Case "RSA": RSA_Email
End Select
End With
End Sub