View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Worksheet renaming

Hi,

I don't understand why you can't simply rename them manually unless the
workbook is protected and if it is this macro won't help but in case you have
a lot of sheets here's a macro that wil remove the .xls from the sheet name.

Right click any sheet tab, view code and paste this in and run it

Sub Atomic_Particles()
For x = 1 To Worksheets.Count
If Right(UCase(Sheets(x).Name), 4) = ".XLS" Then
Sheets(x).Name = Left(Sheets(x).Name, Len(Sheets(x).Name) - 4)
End If
Next
End Sub

Mike

"jwilliam33" wrote:

I have several worksheets within an Excel file, however, when I renamed them,
they all saved with a .xls] extension and now I am unable to rename them and
cannot include them in a formula without an error. How do I rename the
worksheets without the extensions as the normal renaming function will not
allow me to do so. Thanks.
--
Jay W.