Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 31
Default Is it possible to have a different footer on each page in a sheet?

I am trying to do this but I am having no luck. I am not having much
luck finding a topic that addresses this specifically either. I know I
can print different footers on different sheets, but what about the
pages within a sheet? Any help would be appreciated.

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 128
Default Is it possible to have a different footer on each page in a sheet?

I done this but with headers, this will do it for Footers

Create a button and assign these properties

Private Sub CommandButton1_Click()

'Change sheet1 top the name of the worksheet
With ActiveSheet.Sheet1

'Enter your footers inbetween the "" ie "This is my footer"
.LeftFooter = ""
.CenterFooter = ""
.RightFooter = ""

End With
'PrintOut From:=2, To:=2 is the page you require to print
ActiveWindow.SelectedSheets.PrintOut From:=2, To:=2, Copies:=1, Collate _
:=True

'For another page copy from with active down to :=true paste underneath this
ciode and then change its properties

end sub

HTH

--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200602/1
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 31
Default Is it possible to have a different footer on each page in a sheet?

Thanks Crowbar.
It sounds like I will have to wait for footer placement at print time.
I was hoping to establish the footers based on pagebreaks prior to
printing. I guess that may be a pipe dream.

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
Format page number in excel footer to start at a specific page # straitctrydncr Excel Discussion (Misc queries) 4 April 28th 23 07:45 PM
Unique Footer for each page in worksheet with a page number Keys2thecitY Excel Worksheet Functions 0 September 7th 09 06:06 AM
print footer on every page (Totals on every page) sweetyoli Excel Discussion (Misc queries) 1 January 3rd 07 09:26 PM
saving a sheet as a web page and retaining the headers and footer. Susan Excel Discussion (Misc queries) 1 October 27th 06 04:29 PM
header and footer on every page except the first page? marany Excel Discussion (Misc queries) 1 April 18th 05 06:12 PM


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