Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 148
Default show file path in Print footers

How do I show the full file path in the footer of a worksheet print?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 923
Default show file path in Print footers

Try.....

ActiveSheet.PageSetup.LeftFooter = "&Z&F"


--
Cheers
Nigel



"Heather" wrote in message
...
How do I show the full file path in the footer of a worksheet print?



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,758
Default show file path in Print footers

John Walkenbach has an addin you may like. It works with earlier versions of
excel:
http://j-walk.com/ss/excel/files/addpath.htm

Nigel's response will work with xl2002+ (IIRC).

Heather wrote:

How do I show the full file path in the footer of a worksheet print?


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default show file path in Print footers

Or just use a macro like so..

Sub PathInFooter()
ActiveSheet.PageSetup.RightFooter = ActiveWorkbook.FullName & " " & _
ActiveSheet.Name & " " & Application.UserName & " " & Date
End Sub


Gord Dibben Excel MVP

On Fri, 01 Apr 2005 17:51:26 -0600, Dave Peterson
wrote:

John Walkenbach has an addin you may like. It works with earlier versions of
excel:
http://j-walk.com/ss/excel/files/addpath.htm

Nigel's response will work with xl2002+ (IIRC).

Heather wrote:

How do I show the full file path in the footer of a worksheet print?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I get Office 2007 to show me the full path of a file? rob653 New Users to Excel 2 March 28th 07 06:37 PM
Show Path name for a file [email protected] Excel Discussion (Misc queries) 1 January 18th 07 11:22 PM
How to show file path in formual bar when linking workbooks? Mascot Excel Discussion (Misc queries) 2 September 12th 06 04:17 PM
Excel file and path Footers Controller Bill Excel Discussion (Misc queries) 3 July 6th 06 05:15 PM
Print file path EstherJ Excel Discussion (Misc queries) 1 January 5th 06 01:04 PM


All times are GMT +1. The time now is 03:00 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"