Code to multiple sheets

Grimm127

Board Regular
Joined
Aug 17, 2011
Messages
132
Hi All,
Can you please take a gander and see what am I doing wrong here? Its just a code to hide columns based on a row that has "X" in place.
It works on the active sheet but doesn't go to the next ws. THanks in advance.

VBA Code:
Sub TEST_TEST()
Dim ws As Variant, Xrow As Long, LCol As Long

Application.ScreenUpdating = True

For Each ws In Worksheets(Array("Income Statement", "OCC"))

Xrow = 5
LCol = ws.Cells(4, Columns.Count).End(xlToLeft).Column

    With ws
        For x = 1 To LCol
            If Cells(Xrow, x) <> "X" Then
                Columns(x).Hidden = True
            Else
                Columns(x).Hidden = False
            End If
        Next x

End With

Next ws


Application.ScreenUpdating = False
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
You need to qualify the cells & columns with the worksheet, like
VBA Code:
Sub TEST_TEST()
Dim ws As Variant, Xrow As Long, LCol As Long

Application.ScreenUpdating = True

For Each ws In Worksheets(Array("Income Statement", "OCC"))

Xrow = 5
LCol = ws.Cells(4, Columns.Count).End(xlToLeft).Column

    With ws
        For x = 1 To LCol
            If ws.Cells(Xrow, x) <> "X" Then
                ws.Columns(x).Hidden = True
            Else
                ws.Columns(x).Hidden = False
            End If
        Next x

End With

Next ws


Application.ScreenUpdating = False
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,728
Members
448,987
Latest member
marion_davis

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