Adding the current date to the header of a worksheet is easy—Excel provides a dialog box where you can specify the placement of the date and use the '&[date]' coding to actually insert the date. But what if you want to insert yesterday's date or tomorrow's date into the header?
That's not nearly as easy. In fact, you can't do it without using a macro. Perhaps the most flexible approach is to write the macro so that it updates the date just before the worksheet is printed, as shown in the following:
Private Sub Workbook_BeforePrint(Cancel As Boolean) ActiveSheet.PageSetup.CenterHeader = _ Format(Date - 1, "mmmm d, yyyy") End Sub
The macro places yesterday's date into the center of the header; you can easily change the CenterHeader property of one of the other available header locations (LeftHeader or RightHeader). You can also change the macro to insert tomorrow's date by changing the "- 1" to "+ 1".
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (10678) applies to Microsoft Excel 2007, 2010, and 2013. You can find a version of this tip for the older menu interface of Excel here: Putting a Different Date in a Header.
Program Successfully in Excel! John Walkenbach's name is synonymous with excellence in deciphering complex technical topics. With this comprehensive guide, "Mr. Spreadsheet" shows how to maximize your Excel experience using professional spreadsheet application development tips from his own personal bookshelf. Check out Excel 2013 Power Programming with VBA today!
Do you want to change the headers and footers that appear on different pages of your printout? Here's how you can get ...
Discover MoreEver wish that you could create nice, long footers that appear at the bottom of each page when you print your worksheet? ...
Discover MorePage numbers in Excel printouts are typically simple counters, without much chance for embellishment. If you want to add ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2017-07-06 17:20:27
Jacob I
Using Excel 2010 here, and I'm new at creating macros. There are some issues that I've had implementing this article and I've numbered them below. Please offer advice on these points.
1) the above code snippet does not use apostrophes for any arguments
2) No instructions are given on how to record this code as a macro
3) This article is precisely the same as the article for earlier versions of Excel, with the exception of the note stating what versions the article is for. Substantially, they are the same.
2015-10-10 11:19:15
Willy Vanhaelen
@Jared,
- type your text before &[Date]
- hightight the whole thing
- select the Home tab
- select the formatting you want
2015-10-08 09:51:28
Jared
I am trying to insert text prior to the date. Furthermore, would like to make it all 14pt bold text? Could you show me what I am missing?
Thanks!
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2021 Sharon Parq Associates, Inc.
Comments