ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Insert path and file name in excel 2000 (https://www.excelbanter.com/excel-programming/288772-insert-path-file-name-excel-2000-a.html)

JUlie

Insert path and file name in excel 2000
 
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

Andy

Insert path and file name in excel 2000
 
These formulas put sheet, file and path information into cells:

The file path and name
CELL("filename",A1)

The file path
LEFT(CELL("filename",A1),FIND("[",CELL("filename",A1),1)-1)

The file name
MID(CELL("filename",A1),FIND("[",CELL("filename",A1),1)+1,FIND("]",CELL("fil
ename",A1),1)-FIND("[",CELL("filename",A1),1)-1)

The sheet name
RIGHT(CELL("filename",A1),LEN(CELL("filename",A1))-FIND("]",CELL("filename",
A1),1))


--
Regards
Andy Wiggins
www.BygSoftware.com
Home of "Save and BackUp",
"The Excel Auditor" and "Byg Tools for VBA"



"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




Bob Phillips[_6_]

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





All times are GMT +1. The time now is 12:32 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com