Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default different footers on each page

How can I enter different footers on each page in a workbook without all
pages having the same footer?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default different footers on each page

Bailey

A "page" is generally considered to be the area of a worksheet that will print
on one sheet of paper. You could have multiple pages on one worksheet and
multiple worksheets in a workbook, each with multiple pages to print.

Do you mean each "worksheet" of a workbook to have different footers for the
pages printed from that worksheet?

Or different footers for each page printed from a single worksheet?

This would be done manually in most cases.

You could do it with VBA code but need a couple of the questions above answered.


Gord Dibben MS Excel MVP


On Sat, 9 Feb 2008 08:35:01 -0800, Bailey
wrote:

How can I enter different footers on each page in a workbook without all
pages having the same footer?


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default different footers on each page

I have multiple pages on one worksheet.

"Gord Dibben" wrote:

Bailey

A "page" is generally considered to be the area of a worksheet that will print
on one sheet of paper. You could have multiple pages on one worksheet and
multiple worksheets in a workbook, each with multiple pages to print.

Do you mean each "worksheet" of a workbook to have different footers for the
pages printed from that worksheet?

Or different footers for each page printed from a single worksheet?

This would be done manually in most cases.

You could do it with VBA code but need a couple of the questions above answered.


Gord Dibben MS Excel MVP


On Sat, 9 Feb 2008 08:35:01 -0800, Bailey
wrote:

How can I enter different footers on each page in a workbook without all
pages having the same footer?



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default different footers on each page

A unique footer on each page would require a separate setup for each page anda
print job for each.

You could do it with VBA but it would still wind up as separate print jobs.

See Ron de Bruin's site for sample code which would have to be modified.

http://www.rondebruin.nl/print.htm#not


Gord Dibben MS Excel MVP

On Sat, 26 Apr 2008 11:35:00 -0700, bailey
wrote:

I have multiple pages on one worksheet.

"Gord Dibben" wrote:

Bailey

A "page" is generally considered to be the area of a worksheet that will print
on one sheet of paper. You could have multiple pages on one worksheet and
multiple worksheets in a workbook, each with multiple pages to print.

Do you mean each "worksheet" of a workbook to have different footers for the
pages printed from that worksheet?

Or different footers for each page printed from a single worksheet?

This would be done manually in most cases.

You could do it with VBA code but need a couple of the questions above answered.


Gord Dibben MS Excel MVP


On Sat, 9 Feb 2008 08:35:01 -0800, Bailey
wrote:

How can I enter different footers on each page in a workbook without all
pages having the same footer?




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default different footers on each page

I only need the center footer to read differently on each page. For
example, on page 1, it should read "Net Cash Flows" and on page 2, it should
read "Net Working Capital", and on page 3, it should read "Summary Tables",
etc. If I enter the center footer on page 1, it is automatically copied to
the remaining pages. Do I have any other options?
Thank you for your help.

"Gord Dibben" wrote:

A unique footer on each page would require a separate setup for each page anda
print job for each.

You could do it with VBA but it would still wind up as separate print jobs.

See Ron de Bruin's site for sample code which would have to be modified.

http://www.rondebruin.nl/print.htm#not


Gord Dibben MS Excel MVP

On Sat, 26 Apr 2008 11:35:00 -0700, bailey
wrote:

I have multiple pages on one worksheet.

"Gord Dibben" wrote:

Bailey

A "page" is generally considered to be the area of a worksheet that will print
on one sheet of paper. You could have multiple pages on one worksheet and
multiple worksheets in a workbook, each with multiple pages to print.

Do you mean each "worksheet" of a workbook to have different footers for the
pages printed from that worksheet?

Or different footers for each page printed from a single worksheet?

This would be done manually in most cases.

You could do it with VBA code but need a couple of the questions above answered.


Gord Dibben MS Excel MVP


On Sat, 9 Feb 2008 08:35:01 -0800, Bailey
wrote:

How can I enter different footers on each page in a workbook without all
pages having the same footer?






  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default different footers on each page

Record a macro when you
change the footer for page 1 and then only print page 1
Keep recording when you change the footer for page 2 and print page 2
and keep recording while you are changing the footer and printing that page.

After you're done, stop recoring the macro.

Next time you need to print this stuff, just run the macro that you recorded.

bailey wrote:

I only need the center footer to read differently on each page. For
example, on page 1, it should read "Net Cash Flows" and on page 2, it should
read "Net Working Capital", and on page 3, it should read "Summary Tables",
etc. If I enter the center footer on page 1, it is automatically copied to
the remaining pages. Do I have any other options?
Thank you for your help.

"Gord Dibben" wrote:

A unique footer on each page would require a separate setup for each page anda
print job for each.

You could do it with VBA but it would still wind up as separate print jobs.

See Ron de Bruin's site for sample code which would have to be modified.

http://www.rondebruin.nl/print.htm#not


Gord Dibben MS Excel MVP

On Sat, 26 Apr 2008 11:35:00 -0700, bailey
wrote:

I have multiple pages on one worksheet.

"Gord Dibben" wrote:

Bailey

A "page" is generally considered to be the area of a worksheet that will print
on one sheet of paper. You could have multiple pages on one worksheet and
multiple worksheets in a workbook, each with multiple pages to print.

Do you mean each "worksheet" of a workbook to have different footers for the
pages printed from that worksheet?

Or different footers for each page printed from a single worksheet?

This would be done manually in most cases.

You could do it with VBA code but need a couple of the questions above answered.


Gord Dibben MS Excel MVP


On Sat, 9 Feb 2008 08:35:01 -0800, Bailey
wrote:

How can I enter different footers on each page in a workbook without all
pages having the same footer?





--

Dave Peterson
  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 348
Default different footers on each page

bailey wrote:
I have multiple pages on one worksheet.

"Gord Dibben" wrote:

Bailey

A "page" is generally considered to be the area of a worksheet that will print
on one sheet of paper. You could have multiple pages on one worksheet and
multiple worksheets in a workbook, each with multiple pages to print.

Do you mean each "worksheet" of a workbook to have different footers for the
pages printed from that worksheet?

Or different footers for each page printed from a single worksheet?

This would be done manually in most cases.

You could do it with VBA code but need a couple of the questions above answered.


Gord Dibben MS Excel MVP


On Sat, 9 Feb 2008 08:35:01 -0800, Bailey
wrote:

How can I enter different footers on each page in a workbook without all
pages having the same footer?


The simple solution is to put each of your pages on a separate
worksheet. Then you can specify whatever you want for the footer on each
of the worksheets.

Bill
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
Print workbook with different page number footers Angel Bivins Excel Discussion (Misc queries) 1 July 11th 07 08:20 PM
Excel Page Footers Feather 52 Excel Discussion (Misc queries) 1 March 29th 07 12:43 AM
Printing Headers on only first page and Footers on only last page JacMar Excel Discussion (Misc queries) 5 January 21st 07 03:48 PM
Page Numbers in headers/footers Dewayne Excel Discussion (Misc queries) 0 November 30th 06 11:35 PM
1st page only Headers & Footers Etijian Excel Discussion (Misc queries) 3 August 3rd 05 03:31 PM


All times are GMT +1. The time now is 08:22 PM.

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"