Changing many sheets codenames

lalbatros

Well-known Member
Joined
Sep 5, 2007
Messages
659
Hello,

I have about 100 worksheets or charts in a workbook.
There is no VBA code in the workbook yet.

I want to make the codeName for each sheet to be the same as the tab-name.
I know that a codeName is a read-only property.
Nevertheless, I would be interrested in not re-typing all these 100 names.

Would you have some suggestion?

Thanks,

Michel
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Try

Code:
Sub test()
Dim i As Long
For i = 1 To ThisWorkbook.Worksheets.Count
    ThisWorkbook.VBProject.VBComponents(Sheets(i).CodeName).Properties("_CodeName") = Sheets(i).Name
Next i
End Sub
 
Upvote 0
Thanks a lot !
That's a really good one, that saved me from a boring time.
It took my two minutes before it worked.
In my first attempts, it generated some errors.
But running it in debug mode and aknowledging one more message, I got the work completely done!

Thanks,

Michel
 
Upvote 0

Forum statistics

Threads
1,215,580
Messages
6,125,654
Members
449,245
Latest member
PatrickL

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