Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub SetHeader_AllWorksheets()
Dim ws As Worksheet
Application.ScreenUpdating = False
For Each ws In Worksheets
ws.Select
With ActiveSheet.PageSetup
.LeftHeader = "&D &T"
.CenterHeader = "Sample Heading"
.RightHeader = "Page &P"
End With
Next
Sheets(1).Select
[a1].Select
Application.ScreenUpdating = True
End Sub