Changing the tab's text

  • Thread starter Paulo de Arruda Borelli
  • Start date
P

Paulo de Arruda Borelli

How can I change a tabs' ("Sheet1", "Sheet2" and so on) text?

Thank you
Paulo.
 
N

Niek Otten

Hi Paulo,

Double-click on the label and type your text

--

Kind Regards,

Niek Otten

Microsoft MVP - Excel
 
D

David Adamson

Put the new sheet name in cell a1 then run the code


Sub Change_name()
ActiveSheet.Name = Range("a1")
End Sub
 
P

Peter Huang

Hi Paulo,

If you still have any concern on this issue, please feel free to let me
know.

Best regards,

Peter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
 
Top