Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc,microsoft.public.excel.printing,microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Printing Recto/Verso

Hi all,

I have the following problem in Excel 2003...
I have an Excel document with multiple worksheets. Every worksheet contains
one or more (!) pages when printing them. Now I want to print those pages
recto/verso.
The problem is that pages of the different worksheets may NOT be printed at
the back-side of the last page of the previous worksheet.
For example:
Worksheet A has 2 pages when printing
Worksheet B has 3 pages when printing
Worksheet C has 2 pages when printing

When I now print the whole file recto/verso;
-- Worksheet A will be OK
-- Page 1 & 2 of Worksheet B, will be OK
-- Page 3 of Worksheet B AND page 1 of worksheet C will be on the same
paper
-- page 2 of Worksheet C will be on one paper...

How can I solve this problem that no pages of a worksheet is printed on a
page of another worksheet?

In my example, I should get:
-- Page 1 & 2 of Worksheet A on one page
-- Page 1 & 2 of Worksheet B on one page
-- Page 3 of Worksheet B on one page, with a blank back!!
-- Page 1 & 2 of Worksheet C on one page

Thanks in advance!

Sam


  #2   Report Post  
Posted to microsoft.public.excel.misc,microsoft.public.excel.printing,microsoft.public.excel.programming
external usenet poster
 
Posts: 1,163
Default Printing Recto/Verso

You will only have a problem if you select all the worksheets and print them
together. If you print each sheet individually, you should get the results
you want. If you want to make this easier for the user you could set up the
print area and print properties for each sheet to get it to print the way you
want it to, save the workbook, and then use VBA as illustrated below to step
through your sheets and print them individually:
Public Sub PrintSheets()
Worksheets("Worksheet A").Printout
Worksheets("Worksheet B").Printout
Worksheets("Worksheet C").Printout
' etc...
End Sub

"Sam Vanderstraeten" wrote:

Hi all,

I have the following problem in Excel 2003...
I have an Excel document with multiple worksheets. Every worksheet contains
one or more (!) pages when printing them. Now I want to print those pages
recto/verso.
The problem is that pages of the different worksheets may NOT be printed at
the back-side of the last page of the previous worksheet.
For example:
Worksheet A has 2 pages when printing
Worksheet B has 3 pages when printing
Worksheet C has 2 pages when printing

When I now print the whole file recto/verso;
-- Worksheet A will be OK
-- Page 1 & 2 of Worksheet B, will be OK
-- Page 3 of Worksheet B AND page 1 of worksheet C will be on the same
paper
-- page 2 of Worksheet C will be on one paper...

How can I solve this problem that no pages of a worksheet is printed on a
page of another worksheet?

In my example, I should get:
-- Page 1 & 2 of Worksheet A on one page
-- Page 1 & 2 of Worksheet B on one page
-- Page 3 of Worksheet B on one page, with a blank back!!
-- Page 1 & 2 of Worksheet C on one page

Thanks in advance!

Sam



  #3   Report Post  
Posted to microsoft.public.excel.misc,microsoft.public.excel.printing,microsoft.public.excel.programming
bj bj is offline
external usenet poster
 
Posts: 1,397
Default Printing Recto/Verso

the simplest way is to make sure that each sheet will print an even number of
sheets.
Check print preview and add lines or page breaks when needed.

"Sam Vanderstraeten" wrote:

Hi all,

I have the following problem in Excel 2003...
I have an Excel document with multiple worksheets. Every worksheet contains
one or more (!) pages when printing them. Now I want to print those pages
recto/verso.
The problem is that pages of the different worksheets may NOT be printed at
the back-side of the last page of the previous worksheet.
For example:
Worksheet A has 2 pages when printing
Worksheet B has 3 pages when printing
Worksheet C has 2 pages when printing

When I now print the whole file recto/verso;
-- Worksheet A will be OK
-- Page 1 & 2 of Worksheet B, will be OK
-- Page 3 of Worksheet B AND page 1 of worksheet C will be on the same
paper
-- page 2 of Worksheet C will be on one paper...

How can I solve this problem that no pages of a worksheet is printed on a
page of another worksheet?

In my example, I should get:
-- Page 1 & 2 of Worksheet A on one page
-- Page 1 & 2 of Worksheet B on one page
-- Page 3 of Worksheet B on one page, with a blank back!!
-- Page 1 & 2 of Worksheet C on one page

Thanks in advance!

Sam



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
Excel 2003 printing problem--printing 1 document on 2 pages Bons Excel Discussion (Misc queries) 0 December 24th 09 04:15 PM
Excel Printing --Borders are not printing on the same page as data Stup88 Excel Discussion (Misc queries) 1 August 7th 07 09:34 AM
How to print two tab pages double sided (recto verso) Johan Fontaine Setting up and Configuration of Excel 0 November 8th 06 02:33 PM
Printing Recto/Verso Sam Vanderstraeten Excel Discussion (Misc queries) 2 July 7th 05 12:44 PM
Enable Double sided printing contiuously when printing multiple s. Lee Excel Discussion (Misc queries) 1 November 27th 04 01:58 AM


All times are GMT +1. The time now is 03:55 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"