+ Reply to Thread
Results 1 to 3 of 3

Renaming Sheets

Hybrid View

  1. #1
    Forum Contributor Rick_Stanich's Avatar
    Join Date
    11-21-2005
    Location
    Ladson SC
    MS-Off Ver
    Office365
    Posts
    1,177

    Renaming Sheets

    Evar sense I went tu thu Evlin Wood Skool of spede reddin, I two ken red.
    Now I just need to count!

    I have several worksheets to create from an existing worksheet, that's simple enough. What I am stumbling on is renaming them in a specific format.

    Sheet(1).Name = "CAL 001", this is the sheet I am copying.
    Once copied, at least one time, the new sheet name is "CAL 001(1)" what I need is "CAL 002".

    I am trying to do this in a macro because I have many workbooks with many sheets with a similar naming convention. IE: CAL 001, ASY 001, GWI 001 etc.
    The toughest part is I must retain the zeros and must retain the three character alpha three character numeric format with the space between alpha and numeric values, IE, "CAL 001".
    Any help creating/editing code to rename my sheets is appreciated.
    Current code is below, with attempted renaming including counting.

    Sub MakeSheets()
    sCount = 0
    sCount = InputBox("Enter Total Sheet Count!")
    sCount = sCount - 1 'sometimes this variable will not trigger unless msgbox is used?
    'MsgBox sCount + 1 'for testing
    Do Until WorksheetsCount = sCount
    WorksheetsCount = Worksheets.Count
    Worksheets(1).Copy After:=Worksheets(WorksheetsCount)
    With ActiveSheet 'rename sheets
    x = x + 1
    .Name = x + 1 
    End With
    Loop
    End Sub
    Regards

    Rick
    Win10, Office 365

  2. #2
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606
    If they're all of the form letters, space, 3 numbers, try this:
    Sub MakeSheets()
    Dim a, scount
    a = Split(Worksheets(1).Name)
    scount = 0
    scount = InputBox("Enter Total Sheet Count!")
    scount = scount - 1 'sometimes this variable will not trigger unless msgbox is used?
    'MsgBox sCount + 1 'for testing
    Do Until Worksheets.Count = scount
        Sheets(1).Copy After:=Worksheets(Worksheets.Count)
        ActiveSheet.Name = a(0) & " " & Format(Worksheets.Count, "00#")
    Loop
    
    End Sub

  3. #3
    Forum Contributor Rick_Stanich's Avatar
    Join Date
    11-21-2005
    Location
    Ladson SC
    MS-Off Ver
    Office365
    Posts
    1,177
    Excellent!
    I don't fully understand some of the code you used,but I sure am going to read about it.
    a = Split(Worksheets(1).Name)

    I never heard of "Split"

    and
    ActiveSheet.Name = a(0) & " " & Format(Worksheets.Count, "00#")

    I'm not even going there!

    Thanks! A lot!
    Last edited by Rick_Stanich; 01-22-2008 at 04:01 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1