Rename 4 tabs only based on cell value with VBA

Stuepef

Board Regular
Joined
Oct 23, 2017
Messages
128
Office Version
  1. 2021
Platform
  1. Windows
I have a workbook that has 14 total tabs and I am looking to write VBA to rename only 4 of the 14 tabs. The tabs to be renamed will use cell values on a different tab that contain no illegal characters or length restrictions. I have researched how to write the code, but only found the cell values are in the same spot on each workbook which is not the situation here. If the cell value is blank or 0, I want to rename the tab to "HIDE".

worksheets to be renamed:
Summary 1
Summary (2)
Summary (3)
Summary (4)

worksheet with cell values for renaming:
Overall Summary
cell A24 for Summary 1
cell A25 for Summary (2)
cell A26 for Summary (3)
cell A27 for Summary (4)

Thank you for the help!
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Is this a one-off event or will you need to rename those tabs again?
Also what if more then 2 of the cells are blank?
 
Upvote 0
good questions, the renaming of tabs will be a one time event and I didn't think about if more than 2 cells are blank. The reasoning behind the HIDE part is I was going to write another VBA to hide tabs that are labeled HIDE, but I could just incorporate that into 1 VBA.
 
Upvote 0
How about
Code:
Sub RenameShts()
   Dim Ws As Worksheet
   Dim i As Long
   Dim Nme As String
   
   i = 24
   For Each Ws In Sheets(Array("Summary 1", "Summary (2)", "Summary (3)", "Summary (4)"))
      Nme = Sheets("Overall Summary").Range("A" & i).Value
      If Nme = "" Or Nme = 0 Then
         Ws.Visible = xlSheetHidden
      Else
         Ws.Name = Nme
      End If
      i = i + 1
   Next Ws
End Sub
 
Upvote 0
I receive the following error:
Run-Time error '9':
subscript out of range
 
Upvote 0
Check that all the sheet names are correct, including any leading/trailing spaces
 
Upvote 0
I double checked all names for leading/trailing spaces and I still receive the same error message.
 
Upvote 0
What line gives the error?
 
Upvote 0
It doesn't show me which specific line, but when I scroll through the code with F8, it errors out at this point
Code:
If Nme = "" Or Nme = 0 Then
         Ws.Visible = xlSheetHidden

with the top line highlighter.
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,260
Members
449,075
Latest member
staticfluids

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