How to get the name of worksheet in cell?

  • Thread starter Thread starter A.
  • Start date Start date
"A",

Try this (in any cell on the worksheet):

=MID(CELL("filename",A1), FIND("]", CELL("filename",A1))+1, 255)

John
 
Anybody know how to get the name of worksheet in cell?
Thanks


One way: =MID(CELL("filename"),FIND("]",CELL("filename"))+1,255)

will work after the workbook has been saved.


--ron
 
Back
Top