Excel Macro: Rename all Worksheets

Solved/Closed
Bobo - Jul 9, 2010 at 10:44 AM
 ansvk1 - Sep 4, 2013 at 08:54 AM
So, I'm trying to figure out a way to rename all the worksheets in a workbook.

the first worksheet would be "1" (without the quotation marks) and continue up for each worksheet, so the second worksheet would be 2, the third worksheet 3, etc.

any help will be much appreciated.
thanks
Related:

2 responses

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Jul 9, 2010 at 04:50 PM
Sub renameSheets()
Dim iSheetCount

    For iSheetCount = 1 To Sheets.Count
        Sheets(iSheetCount).Name = iSheetCount
    Next iSheetCount

End Sub
15
Thanks a bunch!
0
Many many thanks to you, good job, it was very helpful to me. Thank you again. :)
0
awesome!
0
awesome
0
great! can you tell me how to have this new name in the formate of FiscalWeek 1,2,3,4...so on till FW32?
0