Hi There: I inserted and Active X control (checkbox) and want it hidden if a certain cell (V1) = FALSE. I have the following code I have entered:
Private Sub worksheet_calculate()
EnterMonthlyBox1.Visible = Not Range("v1").Value
End Sub
Problem is when I do this the UNDO function is completely disabled. Any suggestions of a better way to do this? I can't hide the row either because it just shifts the box down and it's still visible. I should also add that if I open any other spreadsheets after this one (even blank ones), my undo function is completely disabled (in case that is relevant or helps?)
The macro triggered by checking the box does not seem to be affecting my undo function, only the one I listed above.
Any suggestions would be appreciated.
Thanks,
Stef.
Private Sub worksheet_calculate()
EnterMonthlyBox1.Visible = Not Range("v1").Value
End Sub
Problem is when I do this the UNDO function is completely disabled. Any suggestions of a better way to do this? I can't hide the row either because it just shifts the box down and it's still visible. I should also add that if I open any other spreadsheets after this one (even blank ones), my undo function is completely disabled (in case that is relevant or helps?)
The macro triggered by checking the box does not seem to be affecting my undo function, only the one I listed above.
Any suggestions would be appreciated.
Thanks,
Stef.