How can I make this macro run on all sheets?

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,201
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi Everyone

I have this code that hides tabs, headings, gridlines for the sheet i'm on but I'd like it to run on everysheet when the document opens
how can I change this so instead of "activeWindow" it say "Every Sheet"??

Code:
Sub Full_Screen()
Application.ScreenUpdating = False

Application.ActiveWindow.DisplayWorkbookTabs = false
Application.ActiveWindow.DisplayHeadings = false
Application.ActiveWindow.DisplayGridlines = false

End Sub

Thanks

Tony
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
you can always loop though all sheets

Code:
Sub LoopSheets()
Dim sh1 As Worksheet
Dim sh2 As Worksheet


Set sh1 = ActiveSheet


For Each sh2 In Worksheets
    sh2.Activate
    < your code >
Next sh2


sh1.Activate

End Sub
 
Upvote 0

Forum statistics

Threads
1,216,129
Messages
6,129,047
Members
449,482
Latest member
al mugheen

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