I want a label (Label86) and a ComboBox (ComboBox86) to hide when the checkbox is checked.
In the VBA Code I have tried;
If Checkbox.Enabled = True Then
Label86.hide()
Comboxbox86.hide()
Else
Label86.show()
Comboxbox86.show()
End If
I've also tried
If CheckBox.Enabled = True Then
Label86.IsVisible = False
ComboBox86.IsVisible = False
Else
Label86.IsVisible = True
ComboBox86.IsVisible = True
End If
What else can I try?
In the VBA Code I have tried;
If Checkbox.Enabled = True Then
Label86.hide()
Comboxbox86.hide()
Else
Label86.show()
Comboxbox86.show()
End If
I've also tried
If CheckBox.Enabled = True Then
Label86.IsVisible = False
ComboBox86.IsVisible = False
Else
Label86.IsVisible = True
ComboBox86.IsVisible = True
End If
What else can I try?