Untested
Sub test()
Dim j&, ws As Worksheets
j = (Array("@DDM-T132", "002004", "002008", "002012", "002038", "002054", "002073", _
"002076", "002094", "002261"))
For Each ws In ThisWorkbook.Worksheets(j)
Application.PrintCommunication = False
With ws.PageSetup
.LeftMargin = Application.InchesToPoints(0.05)
.RightMargin = Application.InchesToPoints(0.05)
.TopMargin = Application.InchesToPoints(0.75)
.Zoom = 85
.ScaleWithDocHeaderFooter = True
End With
Application.PrintCommunication = True
ActiveWindow.ScrollWorkbookTabs Position:=xlFirst
Next ws
End Sub
Bookmarks