tonywatsonhelp
Well-known Member
- Joined
- Feb 24, 2014
- Messages
- 3,210
- Office Version
- 365
- 2019
- 2016
- Platform
- 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"??
Thanks
Tony
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