#1   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 231
Default Footer

Trying for each worksheet to be numbered independently inside of the multipy
chapter workbook. For example; wkst #1 pages 1-3; wkst #2 pages 1-3 etc...
It's autonumbering 1-5 instead
  #2   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 22,906
Default Footer

Print one worksheet at a time.

If you print multiple sheets, Excel treats as one print job and numbers as
pages 1 through whatever.


Gord Dibben MS Excel MVP

On Tue, 16 Jun 2009 13:34:01 -0700, Sarah
wrote:

Trying for each worksheet to be numbered independently inside of the multipy
chapter workbook. For example; wkst #1 pages 1-3; wkst #2 pages 1-3 etc...
It's autonumbering 1-5 instead


  #3   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 231
Default Footer

Hello Gord;

I appreciate your assistance.

Unfortunately, it is such a big workbook.

Is there any other way to set a formula or something to acheive the same
outcome?

Thanks for responding,

Sarah

"Sarah" wrote:

Trying for each worksheet to be numbered independently inside of the multipy
chapter workbook. For example; wkst #1 pages 1-3; wkst #2 pages 1-3 etc...
It's autonumbering 1-5 instead

  #4   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 22,906
Default Footer

You could use a macro to print all sheets would still be separate print
jobs.

At least you wouldn't have to manually select each sheet.

Private Sub Workbook_BeforePrint(Cancel As Boolean)
Dim wkSht As Worksheet
For Each wkSht In ThisWorkbook.Worksheets
wkSht.PageSetup.RightFooter = "Page &P of &N"
wkSht.PrintOut
Next wkSht
End Sub

First make a backup of your workbook in case things go wrong.

With your workbook open hit Alt + F11 to open VBEditor.

Select your workbook and expand. Double-click on Thisworkbook module.

Copy/paste the code above into that module. Alt + q to return to Excel.

Save workbook then print workbook.


Gord

On Wed, 17 Jun 2009 07:02:11 -0700, Sarah
wrote:

Hello Gord;

I appreciate your assistance.

Unfortunately, it is such a big workbook.

Is there any other way to set a formula or something to acheive the same
outcome?

Thanks for responding,

Sarah

"Sarah" wrote:

Trying for each worksheet to be numbered independently inside of the multipy
chapter workbook. For example; wkst #1 pages 1-3; wkst #2 pages 1-3 etc...
It's autonumbering 1-5 instead


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
Footer meyersroman Excel Discussion (Misc queries) 1 October 23rd 08 05:33 PM
Excel footer to look like Word footer? Carole O Excel Discussion (Misc queries) 5 June 2nd 08 11:25 PM
Footer Maggie[_2_] Setting up and Configuration of Excel 1 July 24th 07 04:14 PM
&G in Footer Steve Excel Discussion (Misc queries) 5 May 15th 07 06:57 PM
footer sophie New Users to Excel 1 January 5th 05 03:14 PM


All times are GMT +1. The time now is 01:06 AM.

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

About Us

"It's about Microsoft Excel"