how do i name a excel worksheet and make it appear in cell a1

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i want the name of the worksheet to appear in cell a1, and for it to change
if i change the sheet name. is this possible?
 
In A1 enter:
=MID(CELL("Filename"),FIND("]",CELL("Filename"))+1,255)

Hope this helps
Rowan
 
Hi!

The file has to have already been saved. In other words, if you open a brand
new file and enter this formula, it won't work (it'll return an error) until
you name the file and save it.

Enter this formula in A1:

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

Biff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top