Hide/Unhide Toggle

Nush1981

Board Regular
Joined
Oct 24, 2006
Messages
92
Please could someone provide me with the VBA to 'toggle' between HIDING and UNHIDING columns within one macro

e.g. toggle between this hiding and unhiding the following

Sub HideColumns()

Range("G:G,I:I,AB:AV").Activate
Selection.EntireColumn.Hidden = True

End Sub

Thanks
 
Try this

Code:
Sub HideColumns()

If Range("G:G,I:I,AB:AV").EntireColumn.Hidden = True Then
    Range("G:G,I:I,AB:AV").EntireColumn.Hidden = False
Else: Range("G:G,I:I,AB:AV").EntireColumn.Hidden = True
End If

End Sub
 
Upvote 0
Great thanks :-D

This is the full script

Sub HideColumns()

If MsgBox(prompt:="Have you protected the workbook?", _
Buttons:=vbQuestion + vbOKCancel + vbDefaultButton2, _
Title:="Hide Columns") = vbCancel Then
MsgBox "Action Cancelled"
Exit Sub
End If
Application.ScreenUpdating = False

If Range("G:G,I:I,AB:AV").EntireColumn.Hidden = True Then
Range("G:G,I:I,AB:AV").EntireColumn.Hidden = False
Else: Range("G:G,I:I,AB:AV").EntireColumn.Hidden = True
End If

End Sub


Do you know how to change the message when the button is pressed for the second time? I only want the message to appear when the columns are hidden
 
Upvote 0
Try this

Code:
Sub HideColumns()

If Range("G:G,I:I,AB:AV").EntireColumn.Hidden = True Then
    Range("G:G,I:I,AB:AV").EntireColumn.Hidden = False
Else: Range("G:G,I:I,AB:AV").EntireColumn.Hidden = True
End If

End Sub

I'm pretty sure this will do the same thing:


Code:
Sub HideColumns2()
Range("G:G,I:I,AB:AV").EntireColumn.Hidden = Not Range("G:G,I:I,AB:AV").EntireColumn.Hidden
End Sub
 
Upvote 0
Should be like this

Code:
If Range("G:G,I:I,AB:AV").EntireColumn.Hidden = True Then
     If MsgBox(prompt:="Have you protected the workbook?", _ 
          Buttons:=vbQuestion + vbOKCancel + vbDefaultButton2, _ 
          Title:="Hide Columns") = vbCancel Then 
          MsgBox "Action Cancelled" 
          Exit Sub 
     End If 
End If

Application.ScreenUpdating = False 

If Range("G:G,I:I,AB:AV").EntireColumn.Hidden = True Then 
      Range("G:G,I:I,AB:AV").EntireColumn.Hidden = False 
Else: Range("G:G,I:I,AB:AV").EntireColumn.Hidden = True 
End If 

End Sub
 
Upvote 0
Sorry, don't mean to hijack the thread, but my issues very similar. I have a macro that will hide rows if a cell in the A column is a certain value, which works great. But I want it to toggle this unhiding, but I keep on getting errors; not sure how to resolve this. The best I've been able to do is get it to unhide, then immediately re-hide this!

Code:
Sub HideItem()
Application.ScreenUpdating = False
ActiveSheet.Unprotect
For Each cell In Range("A8:A207")
  If cell.Value = "xxxxx" Then cell.EntireRow.Hidden = True
Next cell
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True
Application.ScreenUpdating = True
End Sub

Thanks in advance!
 
Upvote 0
Or more, why do I get the "Else without If" error when I try this:

Code:
Sub HideItem()
Application.ScreenUpdating = False
ActiveSheet.Unprotect
For Each cell In Range("A8:A207")
    If ccell.EntireRow.Hidden = True Then cell.EntireRow.Hidden = False
    Next cell
    Else: For Each cell In Range("A8:A207")
        If cell.Value = "xxxxx" Then cell.EntireRow.Hidden = True
        Next cell
        End If
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True
Application.ScreenUpdating = True
End Sub
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top