Hi All
I'm in need of a macro which prints my entire workbook (that is all 4 pages together).
I tried using the one below but it seems to print the pages separately .... any help on this would be greatly appreciated
Sub PrintAll()
Dim sh As Worksheet
Dim wb As Workbook
Set wb = ThisWorkbook
For Each sh In wb.Worksheets
sh.PrintOut
Next sh
End Sub
I'm in need of a macro which prints my entire workbook (that is all 4 pages together).
I tried using the one below but it seems to print the pages separately .... any help on this would be greatly appreciated
Sub PrintAll()
Dim sh As Worksheet
Dim wb As Workbook
Set wb = ThisWorkbook
For Each sh In wb.Worksheets
sh.PrintOut
Next sh
End Sub