Mcro to unhide Cols on all sheets

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,563
Office Version
  1. 2021
Platform
  1. Windows
I have code to unhide columns on all sheets

However when running the code , columns are unhidden on certain sheets and not others


Kindly check my code and advise

Code:
 Sub Unhide_All_Columns_in_Workbook()
    
    Dim ws As Worksheet
    
    For Each ws In Worksheets
        Columns.EntireColumn.Hidden = False
      
    Next ws
End Sub
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
That code will only unhide columns on the active sheet as you have not qualified the the columns with the worksheet
 
Upvote 0
thanks for pointing this out


Have amended it to

Code:
 Sub Unhide_All_Columns_in_Workbook()
    
    Dim ws As Worksheet
    For Each ws In ThisWorkbook.Worksheets
            ws.Cells.EntireColumn.Hidden = False
            Next ws
End Sub
 
Upvote 0
Try this:
VBA Code:
Sub Unhide_All_Sheets_Columns()
'Modified  3/26/2021  9:46:21 AM  EDT
Application.ScreenUpdating = False
Dim i As Long
    
    For i = 1 To Sheets.Count
        Sheets(i).Columns.Hidden = False
    Next
Application.ScreenUpdating = True

End Sub
 
Upvote 0
Glad to help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,605
Members
449,089
Latest member
Motoracer88

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