Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
How do I print worksheet pages from various workbooks from one worksheet.
Either an Excel or VBA solution woudld be fine. Thanks, John |
#2
![]() |
|||
|
|||
![]()
John
In VBA you could open all the workbooks and then print them, this code opens two and prints everything in each Sub PrintOtherBooks() Dim wb1 As Workbook, wb2 As Workbook Set wb1 = Workbooks.Open("C:\Book1.xls") wb1.PrintOut wb1.Close SaveChanges:=False Set wb1 = Nothing Set wb2 = Workbooks.Open("C:\Book2.xls") wb2.PrintOut wb2.Close SaveChanges:=False Set wb2 = Nothing End Sub -- HTH Nick Hodge Microsoft MVP - Excel Southampton, England HIS "spartanmba" wrote in message ... How do I print worksheet pages from various workbooks from one worksheet. Either an Excel or VBA solution woudld be fine. Thanks, John |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
problem printing to PDF | Excel Discussion (Misc queries) | |||
Illegal operation error while printing EXCEL or WORD Files | Excel Discussion (Misc queries) | |||
An easy macro question and one I believe to be a little more diffi | Excel Worksheet Functions | |||
Excel 2002 Printing | Excel Discussion (Misc queries) | |||
Enable Double sided printing contiuously when printing multiple s. | Excel Discussion (Misc queries) |