Customizing a Header

imported_unknown

Active Member
Joined
Jan 13, 2002
Messages
424
I am using the date feature and wish to use =now()-10 in the header. How can I do this. I also wish to format the date as MMMM,YYYY.

Any help is appreciated.
Thanks
Neil
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Don't know if that is possible or not, but what you could do is enter that formula in a cell at the top of your worksheet, format it Custom/mmmm, yyyy and then use "File/Page Setup/Sheet/Rows to Repeat at Top" to have it print at the top of each sheet.
 
Upvote 0
Thanks Barry, I already have that. This has been bugging me for some time and I was wondering if anyone knew how to do this.
Thanks
Neil
 
Upvote 0
Something like this in the ThisWorkBook module

Private Sub Workbook_BeforePrint(Cancel As Boolean)
ActiveSheet.PageSetup.LeftHeader = "Report for " & Format(Now() - 10, "mmmm, yyyy")
End Sub
This message was edited by lenze on 2002-10-02 12:34
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,255
Members
448,556
Latest member
peterhess2002

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top