Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default How to print file path in footer as default option for all files?

Every time I go to print format option and make a custom footer containing
the file path. Can I make this a default option?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 772
Default How to print file path in footer as default option for all files?

File, page setup, click the header/footer tab, click footer and the second
line tells you about the path the icon to click is the one that look like a
folder.
--
-John
Please rate when your question is answered to help us and others know what
is helpful.


"Loisita" wrote:

Every time I go to print format option and make a custom footer containing
the file path. Can I make this a default option?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 772
Default How to print file path in footer as default option for all files?

i think i read that wrong, record a macro that does it and store it in your
personal workbook. This is what i got and it worked for me
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 9/19/2008 by john.bundy
'

'
With ActiveSheet.PageSetup
.PrintTitleRows = ""
.PrintTitleColumns = ""
End With
ActiveSheet.PageSetup.PrintArea = ""
With ActiveSheet.PageSetup
.LeftHeader = ""
.CenterHeader = ""
.RightHeader = ""
.LeftFooter = "&Z&F"
.CenterFooter = ""
.RightFooter = ""
.LeftMargin = Application.InchesToPoints(0.75)
.RightMargin = Application.InchesToPoints(0.75)
.TopMargin = Application.InchesToPoints(1)
.BottomMargin = Application.InchesToPoints(1)
.HeaderMargin = Application.InchesToPoints(0.5)
.FooterMargin = Application.InchesToPoints(0.5)
.PrintHeadings = False
.PrintGridlines = False
.PrintComments = xlPrintNoComments
.PrintQuality = 600
.CenterHorizontally = False
.CenterVertically = False
.Orientation = xlPortrait
.Draft = False
.PaperSize = xlPaperLetter
.FirstPageNumber = xlAutomatic
.Order = xlDownThenOver
.BlackAndWhite = False
.Zoom = 100
.PrintErrors = xlPrintErrorsDisplayed
End With
End Sub

--
-John
Please rate when your question is answered to help us and others know what
is helpful.


"Loisita" wrote:

Every time I go to print format option and make a custom footer containing
the file path. Can I make this a default option?

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
spreadsheets to have default footer showing path yland1 Setting up and Configuration of Excel 3 August 22nd 07 05:53 PM
Setiiing up file name & path as a default setting on all sheets/ta Paul Canal Excel Discussion (Misc queries) 3 March 31st 06 01:07 PM
Print file path EstherJ Excel Discussion (Misc queries) 1 January 5th 06 01:04 PM
Path and File Name to Footer Jeanne Excel Discussion (Misc queries) 3 July 13th 05 01:48 PM
print file path and location in a footer be New Users to Excel 2 June 15th 05 03:56 PM


All times are GMT +1. The time now is 05:28 AM.

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"