T
Thrava
Hi folks,
I want to disable combobox12 after a selection of "-" is
made from the dropdown menu of combobox2.
But it doesn't seem to work.
Any help is appreciated.
Private Sub combobox2_click()
ActiveSheet.PivotTables("PivotTable2").RefreshTable
If (Cells(3, "BC").Value = "-") Then
ComboBox12.Enabled = False
End If
End Sub
I want to disable combobox12 after a selection of "-" is
made from the dropdown menu of combobox2.
But it doesn't seem to work.
Any help is appreciated.
Private Sub combobox2_click()
ActiveSheet.PivotTables("PivotTable2").RefreshTable
If (Cells(3, "BC").Value = "-") Then
ComboBox12.Enabled = False
End If
End Sub