** How do I change the name of a worksheet (on tab) to only the left 6 numbers in the name? **

brad7989

New Member
Joined
Aug 1, 2011
Messages
45
I have tabs that come in with a 6 digit number and then some other stuff after it and want my formatting macro to remove all of the extra stuff off of the name down there.

Thanks for your help!
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
So your worksheet name is:

123456somethingelse

and you want it renamed to 123456??


If so:

Code:
Sub RenameSheets()
Dim wsName As String
For Each ws In Worksheets
If ws.Name Like "123456*" Then
wsName = ws.Name
wsName = Left(wsName, 6)
ws.Name = wsName
End If
Next
End Sub
 
Upvote 0
Code:
Sub RenameSheets()
Dim wsName As String
For Each ws In Worksheets
[COLOR=darkred]If ws.Name Like "123456*" Then[/COLOR]
wsName = ws.Name
wsName = Left(wsName, 6)
ws.Name = wsName
End If
Next
End Sub
I think the highlighted line of code above should be this instead...

Code:
If ws.Name Like "######*" Then
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,716
Members
452,939
Latest member
WCrawford

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top