How do you make the sheet name appear automatically in a cell in an excel worksheet?
There is a way to make the name of the sheet appear in the header. What I would like to see is the name of the sheet automatically appear somewhere within the worksheet itself. I plan to use this as a template such that there will be worksheets with different names in the future. How can one make the sheet name appear automatically in a particular cell in an excel worksheet?
copy&paste this formula
=MID(CELL("filename"), FIND("]",CELL("filename"))+1,255)
you can do much more (filename, filepath)…see source.
August 20th, 2009 at 5:26 am
There might be a more straight-forward way, but this works:
=MID(CELL("filename", A1), FIND("]", CELL("filename", A1), 1) +1, 255)
A1 can be any cell in the sheet.
References :
August 20th, 2009 at 5:39 am
copy&paste this formula
=MID(CELL("filename"), FIND("]",CELL("filename"))+1,255)
you can do much more (filename, filepath)…see source.
References :
http://www.exceltip.com/st/Cell_Function_Returns_Sheet_Name,_Workbook_Name_and_Path/180.html