View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default Insert path and file name in excel 2000

Julie,

If you want it in the header/footer, you need VBA.

This code, placed in the ThisWorkbook code module, automatically sets the
full name when printing.

Private Sub Workbook_BeforePrint(Cancel As Boolean)
ActiveSheet.PageSetup.LeftFooter = ThisWorkbook.FullName
End Sub


--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Julie" wrote in message
...
Is it possible to insert the path and the file name of a
document in excel 2000 ? I know it is possible to do this
in Word 2000 by using the command {FILENAME \p} but it
does'nt works in Excel 2000.

Thank you

Julie