» 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 while printing when using Excel 97 & Excel 2000, add an Event (macro code lines) that will automatically cause information, including the Path, to appear on each sheet you print from the workbook. 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:
- Microsoft Excel 2002 Visual Basic for Applications Step by Step
- Harry Potter and the Order of the Phoenix (Book 5)
- Successful Business Planning in 30 Days: A Step-By-Step Guide for Writing a Business Plan and Starting Your Own Business
- The Complete Book of Business Plans: Simple Steps to Writing a Powerful Business Plan (Small Business Sourcebooks)
- Flipping Properties: Generate Instant Cash Profits in Real Estate
- Business Plans Kit for Dummies (With CD-ROM)
No comments have been submitted.

