View Full Version : Showing worksheet tab name in cell


JiTS
02-22-2006, 12:19 AM
Hi! :)

I would like to show the worksheet tab name in a cell of that specific worksheet?

Is this possible with a formula in a cell?!?

shades
02-22-2006, 05:25 AM
Try this:

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

You have to save the workbook first if it is a new workbook.

Sergeant
02-22-2006, 11:20 AM
Try this:

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

You have to save the workbook first if it is a new workbook.
Nice one. That is amazing!