» 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:
- Good to Great: Why Some Companies Make the Leap... and Others Don't
- Retire Young, Retire Rich
- The Total Money Makeover. : A Proven Plan for Financial Fitness
- Excel 2002 For Dummies®
- Cashflow Quadrant: Rich Dad's Guide to Financial Freedom
- Financial Statement Analysis: A Practitioner's Guide, 3rd Edition
Good
Richard Posted on: 31-12-1969
this is a good website for a beginer

