Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
lindsey
 
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   Report Post  
Posted to microsoft.public.excel.newusers
Dave Peterson
 
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   Report Post  
Posted to microsoft.public.excel.newusers
lindsey
 
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   Report Post  
Posted to microsoft.public.excel.newusers
Dave Peterson
 
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
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Linking a cell to another workbook cell based on a variable name Brian Excel Discussion (Misc queries) 6 June 1st 05 11:54 PM
Duplex printing a multi-worksheet workbook Brian Excel Worksheet Functions 0 April 13th 05 08:26 PM
maximum number of spreadsheets in one workbook Hoosier Refiner Excel Discussion (Misc queries) 2 April 2nd 05 08:16 PM
Unprotect Workbook Kent Excel Discussion (Misc queries) 1 February 4th 05 01:07 AM
max # of spreadsheets in a workbook Excel 2000? PRS Excel Discussion (Misc queries) 1 January 21st 05 05:13 PM


All times are GMT +1. The time now is 07:01 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"