XL: Macroless Method to Display the File Name of a WorksheetLast reviewed: February 2, 1998Article ID: Q99348 |
The information in this article applies to:
SUMMARYIn Microsoft Excel, if you want to create a formula that displays the file name of a worksheet in a cell but you do not want to use a macro, use the appropriate following method. For example, to return the file name of a file with the path C:\EXCEL\DATA\TEST.XLS (if you are using Microsoft Excel for Windows) or HD:Microsoft Excel:Data Files:Test (if you are using Microsoft Excel for the Macintosh), the following formulas return TEST.XLS or Test. If you are using Microsoft Excel 5.0 or later, the formulas in this article return the name of both the workbook and the active sheet.
MORE INFORMATION
Microsoft Excel for Windows or Microsoft Excel for OS/2To display the name of the current worksheet, enter the following formula as an array formula
=RIGHT(CELL("filename"),LEN(CELL("filename"))- MAX(IF(NOT(ISERR(SEARCH("\",CELL("filename"), ROW(1:255)))),SEARCH("\",CELL("filename"),ROW(1:255)))))where "filename" is literally the word "filename", in quotation marks. NOTE: The above formula must be entered as an array formula. To enter a formula as an array formula in Microsoft Excel for Windows, press CTRL+SHIFT+ENTER. In Microsoft Excel for the Macintosh, press COMMAND+ENTER. The formula returns the name of the worksheet as long as the worksheet has been saved at least once. If you use this formula on an unsaved worksheet, you receive a #VALUE! error value.
Microsoft Excel for the MacintoshTo display the name of the current worksheet, enter the following formula as an array
=RIGHT(CELL("filename"),LEN(CELL("filename"))- MAX(IF(NOT(ISERR(SEARCH(":",CELL("filename"), ROW(1:255)))),SEARCH(":",CELL("filename"),ROW(1:255)))))where "filename" is literally the word "filename" in quotation marks. NOTE: The above formula must be entered as an array formula. To enter a formula as an array formula in Microsoft Excel for Windows, press CTRL+SHIFT+ENTER. In Microsoft Excel for the Macintosh, press COMMAND+ENTER.
REFERENCES"Function Reference," version 4.0, Pages 46, 239, 252, 377 "Function Reference," version 3.0, Pages 26, 137, 200, 208
|
Additional query words: XL98 XL97 XL7 XL5 XL4 XL3 5.00 3.00 4.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |