A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

printing mutliple spreadsheets that are not in the same workbook



 
 
Thread Tools Display Modes
  #1  
Old December 16th, 2005, 08:40 PM posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: n/a
Default printing mutliple spreadsheets that are not in the same workbook

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?
  #2  
Old December 16th, 2005, 08:54 PM posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: n/a
Default printing mutliple spreadsheets that are not in the same workbook

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.

lindsey wrote:

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
  #3  
Old December 20th, 2005, 04:28 PM posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: n/a
Default printing mutliple spreadsheets that are not in the same workbo

how do you do that?

"Dave Peterson" wrote:

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.

lindsey wrote:

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

  #4  
Old December 20th, 2005, 05:10 PM posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: n/a
Default printing mutliple spreadsheets that are not in the same workbo

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

lindsey wrote:

how do you do that?

"Dave Peterson" wrote:

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.

lindsey wrote:

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


--

Dave Peterson
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Auto updating a workbook with data from another workbook Richard General Discussion 0 November 6th, 2005 03:50 PM
Excel XP - Printing multiple worksheet in a workbook Anil Sharma Worksheet Functions 2 November 2nd, 2005 09:41 PM
Do something when workbook is printing Man Utd New Users 2 October 20th, 2005 02:31 AM
Unprotect Workbook Kent General Discussion 1 February 4th, 2005 01:07 AM
linking source workbook to other spreadsheets dolinger General Discussion 5 June 24th, 2004 12:03 AM


All times are GMT +1. The time now is 05:38 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.