Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Linking a cell to another workbook cell based on a variable name | Excel Discussion (Misc queries) | |||
Duplex printing a multi-worksheet workbook | Excel Worksheet Functions | |||
maximum number of spreadsheets in one workbook | Excel Discussion (Misc queries) | |||
Unprotect Workbook | Excel Discussion (Misc queries) | |||
max # of spreadsheets in a workbook Excel 2000? | Excel Discussion (Misc queries) |