Macro Help

G

Guest

I wrote the following macro to add a custom footer. However, when I run it,
lose my print range. Can anyone tell me what to add/change to avoid this?
Thank you!

Sub UpdateFooter()
ActiveSheet.PageSetup.PrintArea = ""
With ActiveSheet.PageSetup
.LeftFooter = "&8" & ActiveWorkbook.FullName
.CenterFooter = "&8&A"
.RightFooter = "&8&D &T"
End With
End Sub
 
I

Ikaabod

It looks like you need to simply delete the line:
ActiveSheet.PageSetup.PrintArea = ""

-Ikaabod
 
G

Guest

Thank you - that worked. I knew it was something simple, but I only know
enough about macros to be dangerous!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top