Rename tab based on cell value - Macro

redjay

New Member
Joined
May 9, 2008
Messages
46
Hi all

I want some VBA code that will cycle through all the worksheets in a workbook and rename each tab/sheet based on the value of a cell in that sheet (B17).

The cell is always B17 but on some of the sheets, B17 is blank, in which case it is fine to not rename.

I have tried the below code but get a 'Name of object'_worksheet' failed' error message.
Any ideas anybody? Thanks

Code:
Sub tabname()
Dim ws As Worksheet
For Each ws In Worksheets
ws.Activate
ws.Name = Range("B17").Value
Next
End Sub
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Try

Code:
Sub tabname()
Dim ws As Worksheet
For Each ws In Worksheets
    With ws
        If .Range("B17").Value <> "" Then .Name = .Range("B17").Value
    End With
Next ws
Next
End Sub
 
Upvote 0
try this

Code:
  For Each ws In ActiveWorkbook.Worksheets
          ws.Name = Range("B17").value
  Next ws
 
Upvote 0
Well, you're definately going to need some error handling...

Depending on what is in B17 of each sheet.
There are rules regarding how a sheet can be named.

1. There cannot be any duplicates, you can't have 2 sheets with the same name
2. Certain Characters are not allowed in sheet names, like "/" <--this rule is most commonly broken when you try to name your sheet according to a date, dates contain /
3. There is a limit to the length of a sheet name, I think it's 32 characters.

So try

Code:
Sub tabname()
Dim ws As Worksheet
For Each ws In Worksheets
    On Error Resume Next
    If Len(ws.Range("B17")) >0 Then
        ws.Name = ws.Range("B17").Value
    End If
    On Error Goto 0
    If ws.Name <> ws.Range("B17").Value Then
        Msgbox ws.Name & " Was Not renamed, the suggested name was invalid"
    End If
Next
End Sub
 
Upvote 0
Thank you both, the code works great....however B17 does indeed contain an illegal character- drat!

The cell has a / character as part of an invoice number. Is there any way I can somehow ask it to rename, but without the / ???

Cheers
 
Upvote 0
Try this code, it will replace any / with -

Code:
Sub tabname()
Dim ws As Worksheet
For Each ws In Worksheets
    On Error Resume Next
    If Len(ws.Range("B17")) >0 Then
        ws.Name = Replace(ws.Range("B17").Value,"/","-")
    End If
    On Error Goto 0
    If ws.Name <> Replace(ws.Range("B17").Value,"/","-") Then
        Msgbox ws.Name & " Was Not renamed, the suggested name was invalid"
    End If
Next
End Sub
 
Upvote 0
Excellent!

That works a treat. Thanks Jonmo.

I also need to copy the contents of B19 to another cell A6, across all worksheets. Im guessing this is pretty simple but am again having trouble..?

If anyone can help with that il be v grateful

Thanks.
 
Upvote 0
Hi
I have a similar question, (I also want the tab to be named after a specific cell on each sheet), except I would like this process to happen automatically, so that I don't have to run the macro everytime the cell name changes?
 
Upvote 0

Forum statistics

Threads
1,215,375
Messages
6,124,591
Members
449,174
Latest member
chandan4057

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