Retain Original Date in Page Header

G

Guest

I dowload a report each day and run a complex macro that creates a dozen or
so worksheets, each worksheet has a page header. The page header is the Name
of the report for example, "Confirm Report" with the current date. My code is

..CenterHeader = "CONFIRM REPORT FOR &D"

My problem is each time the report is opened, it displays the current date
in the page header, I don't want that, I want it to retain the original date
reguardless of when it is viewed.

As I was scanning previous posts, I saw where someone was advised use
"today" but then somebody else said that would not retain the original date.
I just want to clarify that if I use this code, my date will not change each
time the report is opened, it will retain the original date when the report
was created. Thanks

..CenterHeader = "CONFIRM REPORT FOR today()"
 
J

JK

Maybe this will work for you:

..CenterHeader = "CONFIRM REPORT FOR " & Date

This should place the date into the header as a string so it won't be
automatically updated by excel the next time it is opened.

-JK
 

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