setting tab name for worksheet

  • Thread starter Thread starter Jan Eikeland
  • Start date Start date
J

Jan Eikeland

hi.
Cant figure how to set name on diffrent worksheets.
any help?

thank you
regards jan
 
Just double click on the sheet tab and start typing the new name. When
finished, hit Enter.

Amit
 
in vba
thisworkbook.worksheets("<oldname>").name = "<newname>"

ricky
 
Jan

Sub sheetname1()
ActiveSheet.Name = Format(Now(), "dddd-mmm-yy")
End Sub

Sub sheetname()
ActiveSheet.Name = Range("c1")
End Sub

Gord Dibben Excel MVP
 

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