P
Paul Watkins
Hi
I am trying to hide a button on a sheet until another cell equals a certain
value
I've tried this code, but without sucess
The Button is 'Button1'
Sub TEST()
If Range("C2").Value = 2 Then
Button1.Visible = xlButtonHidden
Else
End If
End Sub
Thanks in advance
Paul
I am trying to hide a button on a sheet until another cell equals a certain
value
I've tried this code, but without sucess
The Button is 'Button1'
Sub TEST()
If Range("C2").Value = 2 Then
Button1.Visible = xlButtonHidden
Else
End If
End Sub
Thanks in advance
Paul