+ Reply to Thread
Results 1 to 19 of 19

Renaming Sheets

Hybrid View

  1. #1
    Registered User
    Join Date
    08-15-2012
    Location
    Baltimore, MD
    MS-Off Ver
    Excel 2010
    Posts
    31

    Renaming Sheets

    I have a macro that takes a sheet and splits it into several different sheets, using various loops.

    I am trying to rename the sheets using this code

                    If Range("G2").Value = "Risk" Then
                    ActiveSheet.Name = "R-" & Range("H2").Value
                    ElseIf Range("G2").Value = "Issue" Then
                    ActiveSheet.Name = "I-" & Range("H2").Value
                    ElseIf Range("G2").Value = "Opportunity" Then
                    ActiveSheet.Name = "O-" & Range("H2").Value
                    End If
    It just runs through and doesn't change the name of the sheet.

  2. #2
    Valued Forum Contributor tlafferty's Avatar
    Join Date
    04-08-2011
    Location
    United States, Tacoma, WA
    MS-Off Ver
    Excel 2010, Excel 2013 Customer Preview
    Posts
    1,112

    Re: Renaming Sheets

    Try this...
    Sub ChangeSheetName()
        For Each s In Sheets
             If s.Range("G2").Value = "Risk" Then
                s.Name = "R-" & s.Range("H2").Value
            ElseIf s.Range("G2").Value = "Issue" Then
                s.Name = "I-" & s.Range("H2").Value
            ElseIf s.Range("G2").Value = "Opportunity" Then
                s.Name = "O-" & s.Range("H2").Value
            End If
        Next
    End Sub
    If your question has been satisfactorily addressed, please consider marking it solved. Click the Thread Tools dropdown and select Mark thread as solved.
    Also, you might want to add to the user's reputation by clicking the star icon in the lower left corner of the post with the answer- it's why we do what we do...

    Thomas Lafferty
    Analyst/Programmer

  3. #3
    Registered User
    Join Date
    08-15-2012
    Location
    Baltimore, MD
    MS-Off Ver
    Excel 2010
    Posts
    31

    Re: Renaming Sheets

    I tried this on the worksheet both on it's on and by adding it to my code and it does nothing.

    Now the values being used come from cells that I used Text to Columns on. I have no idea if that makes any difference or not. But I have used this code in other macros and it was fine.

  4. #4
    Registered User
    Join Date
    08-15-2012
    Location
    Baltimore, MD
    MS-Off Ver
    Excel 2010
    Posts
    31

    Re: Renaming Sheets

    Here is the full code of the macro, maybe this will help

    Sub Macro1()
    '
    ' 
    '
    
    'Copy and edit original sheet
    
    Sheets.Add After:=Sheets(Sheets.Count)
    Sheets("RiskListWithResponses").Select
    Cells.Select
    Selection.Copy
    Sheets(Sheets.Count).Name = "Copy"
    Sheets("Copy").Select
    Selection.PasteSpecial Paste:=xlPasteAllUsingSourceTheme, Operation:=xlNone _
        , SkipBlanks:=False, Transpose:=False
    Application.CutCopyMode = False
    Selection.Hyperlinks.Delete
    With Selection
        .Orientation = 0
        .AddIndent = False
        .ShrinkToFit = False
        .MergeCells = False
    End With
    With Selection.Font
        .Name = "Arial"
        .Size = 10
        .Strikethrough = False
        .Superscript = False
        .Subscript = False
        .OutlineFont = False
        .Shadow = False
        .Underline = xlUnderlineStyleNone
        .TintAndShade = 0
        .ThemeFont = xlThemeFontNone
    End With
    With Selection.Font
        .ThemeColor = xlThemeColorLight1
        .TintAndShade = 0
    End With
    Columns("C:C").Select
    Selection.Delete Shift:=xlToLeft
    Columns("F:N").Select
    Selection.Delete Shift:=xlToLeft
    Rows("1:7").Select
    Range("A6").Activate
    Selection.Delete Shift:=xlUp
    Columns("C:E").EntireColumn.AutoFit
    Columns("B:B").ColumnWidth = 62.29
    Cells.Select
    With Selection
        .WrapText = True
        .Orientation = 0
        .AddIndent = False
        .ShrinkToFit = False
        .MergeCells = False
    End With
        
    'Add borders
    Columns("A:E").Select
    Selection.Borders(xlDiagonalDown).LineStyle = xlNone
    Selection.Borders(xlDiagonalUp).LineStyle = xlNone
    With Selection.Borders(xlEdgeLeft)
        .LineStyle = xlContinuous
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeTop)
        .LineStyle = xlContinuous
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeBottom)
        .LineStyle = xlContinuous
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeRight)
        .LineStyle = xlContinuous
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlInsideVertical)
        .LineStyle = xlContinuous
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlInsideHorizontal)
        .LineStyle = xlContinuous
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThin
    End With
       
    
    'Loops to create new sheets
    
    Dim RowCount As Integer
    Dim RowA As Integer
    Dim RowB As Integer
    Dim LContinue As Integer
    Dim LastRow As Integer
    
    
    
    
    
    'Initiate Variables
    RowA = 1
    RowB = 1
    LastRow = ActiveSheet.UsedRange.Rows.Count + 1
    
    
    
    Do While RowA <> LastRow
        RowA = RowA + 1
        
        If (Range("A" & CStr(RowA))) <> "" Then
            RowB = RowA
            LContinue = True
            
            Do While LContinue = True
                RowB = RowB + 1
            
                If (Range("A" & CStr(RowB))) <> "" And (Range("B" & CStr(RowB))) <> "" Then
                     RowB = RowB - 1
                     LContinue = False
                
                ElseIf (Range("A" & CStr(RowB))) = "" And (Range("B" & CStr(RowB))) = "" Then
                     LContinue = False
                
                Else: LContinue = True
            
                End If
                 
            Loop
            
    'Create and edit new sheet
            
            Rows(RowA & ":" & RowB).Select
            Selection.Copy
            Sheets.Add After:=Sheets(Sheets.Count)
            Selection.PasteSpecial Paste:=xlPasteColumnWidths, Operation:=xlNone, _
            SkipBlanks:=False, Transpose:=False
            ActiveSheet.Paste
         
         
    'Set up to rename sheets
    
            Columns("A:A").Select
            Application.CutCopyMode = False
            Selection.Delete Shift:=xlToLeft
       
            If (Range("A4")) = "" Then
                Application.DisplayAlerts = False
                ActiveWindow.SelectedSheets.Delete
                Application.DisplayAlerts = True
            Else
                Range("A1").Select
                Selection.Copy
                Range("G1").Select
                Selection.PasteSpecial Paste:=xlPasteColumnWidths, Operation:=xlNone, _
                    SkipBlanks:=False, Transpose:=False
                ActiveSheet.Paste
                Application.CutCopyMode = False
                Selection.TextToColumns Destination:=Range("G1"), DataType:=xlDelimited, _
                    TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, _
                    Semicolon:=False, Comma:=False, Space:=False, Other:=True, OtherChar _
                    :="-", FieldInfo:=Array(Array(1, 1), Array(2, 1), Array(3, 1), Array(4, 1)), _
                    TrailingMinusNumbers:=True
                    Columns("G:I").EntireColumn.AutoFit
                 
                Do While IsNumeric([H1]) <> True
                    Columns("H").Select
                    Selection.Delete Shift:=xlToLeft
                   
                Loop
                
                            Range("G1:H1").Select
                Selection.Copy
                Range("G2").Select
                Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
                    :=False, Transpose:=False
                    
                Range("A1").Select
                
    
    
            End If
            
            
                    If Range("G2").Value = "Risk" Then
                    ActiveSheet.Name = "R-" & Range("H2").Value
                    ElseIf Range("G2").Value = "Issue" Then
                    ActiveSheet.Name = "I-" & Range("H2").Value
                    ElseIf Range("G2").Value = "Opportunity" Then
                    ActiveSheet.Name = "O-" & Range("H2").Value
                    End If
            
               
            
                Sheets("Copy").Select
            End If
              
    
    Loop
    
    'Rename Sheets
    
    
    
    
    End Sub

  5. #5
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,242

    Re: Renaming Sheets

    It would probably be a good idea to upload the workbook, or a sample, if the data is not sensitive (or can be anonymised)

    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  6. #6
    Registered User
    Join Date
    08-15-2012
    Location
    Baltimore, MD
    MS-Off Ver
    Excel 2010
    Posts
    31

    Re: Renaming Sheets

    I have uploaded a Dummy worksheet

    DUMMY2.xls

  7. #7
    Registered User
    Join Date
    08-15-2012
    Location
    Baltimore, MD
    MS-Off Ver
    Excel 2010
    Posts
    31

    Re: Renaming Sheets

    This one should work a bit better as I ranamed some cells for it to work.

    DUMMY2.xls

  8. #8
    Registered User
    Join Date
    08-15-2012
    Location
    Baltimore, MD
    MS-Off Ver
    Excel 2010
    Posts
    31

    Re: Renaming Sheets

    I wil have to make some edits to that worksheet

  9. #9
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,242

    Re: Renaming Sheets

    Cell C8 does not exist in its own right. It's merged with cell B8 ... so it's not going to have a value and all the conditions fail.


    Regards, TMS

  10. #10
    Valued Forum Contributor tlafferty's Avatar
    Join Date
    04-08-2011
    Location
    United States, Tacoma, WA
    MS-Off Ver
    Excel 2010, Excel 2013 Customer Preview
    Posts
    1,112

    Re: Renaming Sheets

    Two things I noticed:
    1. If you put my procedure above the Next ws statement, it will cause my procedure to run through every sheet exponentially (ie if you have two sheets it will execute your code twice and my code twice for four executions). Place my code minus the sub end sub parts right below the Next ws statement.

    2. Change cell G2 on your original sheet to one of your test values and unmerge the cell, then run the macro. The original sheet will be renamed O- if you enter Opportunity in G2...

  11. #11
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,242

    Re: Renaming Sheets

    And G2 and H2 are part of a merged cell, A2.

    I'm kind of confused here ...

  12. #12
    Registered User
    Join Date
    08-15-2012
    Location
    Baltimore, MD
    MS-Off Ver
    Excel 2010
    Posts
    31

    Re: Renaming Sheets

    OK... What I did was take A1 and used the Text to Columns to seperate the data in A1 so I can use it. It may have had something like, Issue - I-10 - Problem name and details or Risk - 2 - Risk name and details

    This database wasn't exactly normalized so it gets tricky.

    I seperated A1 by the deliminater -
    Then I did some checks just to get Issue in one cell and the number in the next cell
    I created a G2 and H2 just to check things out but G1 and H1 could be used as well.

    A2 is not merged

  13. #13
    Registered User
    Join Date
    08-15-2012
    Location
    Baltimore, MD
    MS-Off Ver
    Excel 2010
    Posts
    31

    Re: Renaming Sheets

    DUMMY3.xls


    Sorry, I posted the DUMMY2 worksheet before I left work on Friday.
    I have reposted DUMMY3 and it has the actual code that is to be used. Maybe this will make more sense.
    The Macro unmerges the cells so there are no merged cells being used.

  14. #14
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,242

    Re: Renaming Sheets

    Sorry, where is your original code in relation to this workbook?

  15. #15
    Registered User
    Join Date
    08-15-2012
    Location
    Baltimore, MD
    MS-Off Ver
    Excel 2010
    Posts
    31

    Re: Renaming Sheets

    You need to run the macro that I have created and posted... I made a copy of the orginal sheet and unmerged the cells and got rid of extra columns.

  16. #16
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,242

    Re: Renaming Sheets

    I would approach the creation of the Copy sheet and then copying the data to it something like this:

    Sub NewSheets()
    
    Dim shCopy As Worksheet
    
    Set shCopy = Sheets.Add(After:=Sheets(Sheets.Count))
    shCopy.Name = "Copy"
    
    With Sheets("RiskListWithResponses")
        .Cells.Copy shCopy.Range("A1")
    End With
    
    End Sub

    That would create and name the Copy sheet and, without needing to select the RiskListWithResponses sheet, copy the data to it.


    If all the borders are the same, the adding borders code could be reduced to:

    'Add borders
    With Columns("A:E")
        .Borders(xlDiagonalDown).LineStyle = xlNone
        .Borders(xlDiagonalUp).LineStyle = xlNone
        With .Borders()
            .LineStyle = xlContinuous
            .ColorIndex = 0
            .TintAndShade = 0
            .Weight = xlThin
        End With
    End With

    Regards, TMS

  17. #17
    Valued Forum Contributor tlafferty's Avatar
    Join Date
    04-08-2011
    Location
    United States, Tacoma, WA
    MS-Off Ver
    Excel 2010, Excel 2013 Customer Preview
    Posts
    1,112

    Re: Renaming Sheets

    Try the amended code below. The problem with the macro is that it was testing for the exact text "Risk", "Opportunity" or "Issue" when the text in each of those tests has a space at the end of it. To remove this problem, I used the Trim function to remove the space. Note that this still leaves some worksheets that don't get renamed since G2 contains text like zzzzzzzz. The amended code looks like this:
                    If Trim(Range("G2").Value) = "Risk" Then
                        ActiveSheet.Name = "R-" & Range("H2").Value
                    ElseIf Trim(Range("G2").Value) = "Issue" Then
                        ActiveSheet.Name = "I-" & Range("H2").Value
                    ElseIf Trim(Range("G2").Value) = "Opportunity" Then
                        ActiveSheet.Name = "O-" & Range("H2").Value
                    End If

  18. #18
    Registered User
    Join Date
    08-15-2012
    Location
    Baltimore, MD
    MS-Off Ver
    Excel 2010
    Posts
    31

    Re: Renaming Sheets

    Thank you tlafferty, that solved my problem.

  19. #19
    Valued Forum Contributor tlafferty's Avatar
    Join Date
    04-08-2011
    Location
    United States, Tacoma, WA
    MS-Off Ver
    Excel 2010, Excel 2013 Customer Preview
    Posts
    1,112

    Re: Renaming Sheets

    Glad I could help! Please mark the thread solved (forum rule #9):
    http://www.excelforum.com/forum-rule...rum-rules.html

+ 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