G
Guest
Greetings!
I made a control button that will unhide a column in a certain range using:
Private Sub CommandButton2_Click()
Columns("B").Select
Selection.EntireColumn.Hidden = False
Range("B1").Select
End Sub
How can I modify this to re-hide the column on the second click, or if it
his already unhidden?
I made a control button that will unhide a column in a certain range using:
Private Sub CommandButton2_Click()
Columns("B").Select
Selection.EntireColumn.Hidden = False
Range("B1").Select
End Sub
How can I modify this to re-hide the column on the second click, or if it
his already unhidden?