» Adding the Path Address to the Header/Footer
CATEGORY - Excel Printing
VERSION - All Microsoft Excel Versions
To add the path to a header or footer:
1. Open the VBE (Visual Basic Editor) by pressing Alt+F11.
2. In the Project Explorer, double-click the ThisWorkbook Module.
3. From the Object dropdown list, select Workbook, and from the Procedure dropdown list, select BeforePrint (these two dropdown lists are at the top of the Module sheet).
4. In the Event procedure, between the automatically generated opening and closing statements, type the following code:
ActiveSheet.PageSetup.LeftFooter="&A&F&T&D" & ActiveWorkbook.Path
The letters A, F, T, D are the sheet name, workbook name, time, and date, respectively.
When using Excel 2002 and Excel 2003, the line of code will be shorter (Z is for the path address):
LeftFooter="&A&F&T&D&Z"

Book Store:
Recommended Books:
- The 22 Immutable Laws of Marketing : Exposed and Explained by the World's Two
- Accounting the Easy Way
- East of Eden (Oprah's Book Club)
- Microsoft Excel VBA Programming for the Absolute Beginner
- Analyzing Markets, Products, and Marketing Plans
- Financial Statement Analysis: A Practitioner's Guide, 3rd Edition
No comments have been submitted.

