Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / December 2005

Tip: Looking for answers? Try searching our database.

printing mutliple spreadsheets that are not in the same workbook

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
lindsey - 16 Dec 2005 20:40 GMT
how do i print multiple spreadsheets at the same time, with one print
command, that are not in the same workbook?  can this be done?
Dave Peterson - 16 Dec 2005 20:54 GMT
I don't think you can.

Maybe you could have a macro that prints the sheets that you want from any open
workbook.  You'll only have to do one thing, but it'll kind of look like you're
printing all at once.

> how do i print multiple spreadsheets at the same time, with one print
> command, that are not in the same workbook?  can this be done?

Signature

Dave Peterson

lindsey - 20 Dec 2005 16:28 GMT
how do you do that?

> I don't think you can.
>
[quoted text clipped - 4 lines]
> > how do i print multiple spreadsheets at the same time, with one print
> > command, that are not in the same workbook?  can this be done?
Dave Peterson - 20 Dec 2005 17:10 GMT
Something like:

Option Explicit
Sub printall()

   Dim wkbk As Workbook
   Dim myWindow As Window
   
   For Each wkbk In Application.Workbooks
       For Each myWindow In wkbk.Windows
           If myWindow.Visible = True Then
               wkbk.PrintOut preview:=True
               Exit For
           End If
       Next myWindow
   Next wkbk
End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

> how do you do that?
>
[quoted text clipped - 10 lines]
> >
> > Dave Peterson

Signature

Dave Peterson

 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.