ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Setting up and Configuration of Excel (https://www.excelbanter.com/setting-up-configuration-excel/)
-   -   Footer (https://www.excelbanter.com/setting-up-configuration-excel/234077-footer.html)

Sarah

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

Gord Dibben

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



Sarah

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


Gord Dibben

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




All times are GMT +1. The time now is 12:26 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com