Forum Discussion
Keith Farmery
Jun 01, 2017Copper Contributor
Macro to update Footers on multiple worksheets
Hi Is there anyone out there who can help with this? I'm creating a workbook for others to use, so I am aiming to include as much automation as possible. I need to update 50 sheets, all i...
Wyn Hopkins
Jun 01, 2017MVP
Hi Keith
This is the basic code
Sub RenameFooters() Dim wks As Worksheet For Each wks In Worksheets
wks.PageSetup.LeftFooter = Range("FooterText").Value
' note you can use .CenterFooter or . RightFooter
Next wks End Sub
Keith Farmery
Jun 05, 2017Copper Contributor
Hi Wyn
That's great - thank you - your help is much appreciated.
I'm going to use both methods
Thanks again
Keith
- Wyn HopkinsJun 05, 2017MVPNo problem, would you mind marking it as answered
Thanks