footer date

C

Cecelia Claybrook

Is there a way to automate the changing of a date in the
footer only when a change has been made in the data.
e.g. Revised on <date>.
 
J

Jim Rech

Excel doesn't have a feature that changes the footer when a cell is changed.
You could run a macro to make it easier to enter the new footer, e.g.,

ActiveSheet.PageSetup.CenterFooter = _
"Revised on " & Format(Now, "m/d/yyyy")
 

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