Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
KikiMarie
 
Posts: n/a
Default how to add footers to ALL sheets in a workbook at once?

There must be a way to format all sheets in a workbook with the same footer
format (i.e. file name, tab and date) at once rather than tab by tab. Can
anyone tell me how?
  #2   Report Post  
Dave Peterson
 
Posts: n/a
Default

Try grouping all your worksheets.

Right click on any of them and select "Group Sheets"

Then set the footer.

Remember to ungroup the worksheets when you're done.

KikiMarie wrote:

There must be a way to format all sheets in a workbook with the same footer
format (i.e. file name, tab and date) at once rather than tab by tab. Can
anyone tell me how?


--

Dave Peterson
  #3   Report Post  
Jim May
 
Posts: n/a
Default

You can also enter into a standard module:

Sub FooterInAll()
Dim i As Integer
Dim Noshts As Integer
Noshts = ThisWorkbook.Worksheets.Count
For i = 1 To Noshts
With Sheets
Sheets(i).PageSetup.LeftFooter = "This is a test"
End With
Next i
End Sub

For what it's worth,,,


"Dave Peterson" wrote:

Try grouping all your worksheets.

Right click on any of them and select "Group Sheets"

Then set the footer.

Remember to ungroup the worksheets when you're done.

KikiMarie wrote:

There must be a way to format all sheets in a workbook with the same footer
format (i.e. file name, tab and date) at once rather than tab by tab. Can
anyone tell me how?


--

Dave Peterson

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
Finding specific sheets within a workbook Roy Excel Discussion (Misc queries) 2 August 23rd 05 06:40 PM
Macros for Protect/Unprotect all sheets in a workbook Paul Sheppard Excel Discussion (Misc queries) 2 August 4th 05 04:30 PM
Automatically copy selective sheets from one workbook to another Ann Excel Discussion (Misc queries) 0 March 1st 05 07:09 PM
How to hyperlink from a workbook to sheets in another workbook? MJOHNSON Excel Worksheet Functions 0 February 17th 05 08:31 PM
Copy comments to several sheets in a workbook? jen_l_333 Excel Worksheet Functions 1 January 7th 05 10:30 PM


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