Macro to rename sheets

nhayden73

New Member
Joined
Jan 10, 2018
Messages
8
Hi all,

I using a simple VB code that takes the name from a specific sheet cell and changes the tab name to match when that tab is activated.
I want to expand on this macro to have a message pop-up if there is an error with the name structure. Like having the same name as another tab or if the name violates the characters that can be use.

Here is the code that I have so far. (borrowed from a google search)

Private Sub Worksheet_Activate()
newname = Range("C6").Text
On Error Resume Next
If Right(newname, 1) = " " Then newname = Left(newname, (Len(newname) - 1))
ActiveSheet.Name = newname
End Sub

I am not sure how to add in a simple message in case there is an error.
Something like: "Please Revise Room Name. It appears to contain an illegal character."

I have tried using the code from this post. https://excel.tips.net/T002145_Dynamic_Worksheet_Tab_Names.html
The problem I encounter with this code is that when using the "FIND" or "REPLACE" features on the workbook level it triggers a Debug error.

Any assistance would be greatly appreciated.
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Hi & welcome to the board
How about
Code:
Private Sub Worksheet_Activate()
   Dim NewName As String
   NewName = Range("C6").Text
   On Error GoTo BadName
   ActiveSheet.Name = Trim(NewName)
Exit Sub
BadName:
   MsgBox "Illegal Name"
End Sub
 
Upvote 0
Hi & welcome to the board
How about
Code:
Private Sub Worksheet_Activate()
   Dim NewName As String
   NewName = Range("C6").Text
   On Error GoTo BadName
   ActiveSheet.Name = Trim(NewName)
Exit Sub
BadName:
   MsgBox "Illegal Name"
End Sub
@Fluff

I gave this a try and it works fine but for some reason when I use the Find/Replace feature on a workbook level it causes the error message box to pop up and then a debug error.
Any thoughts on what might be causing this or how to resolve?

Thanks
 
Upvote 0
I think the problem is likely to be casued by the fact that your macro runs every time the worksheet is activated. You probably need to put a check to see if the name is already equal to C6

Add these two lines at the top
Code:
t = (ActiveSheet.Name)
If t = Range("C6") Then Exit Sub
 
Last edited:
Upvote 0
Are you searching for the value in C6 of that sheet?
 
Upvote 0
Hi, I tried adding the IF statement above. Not sure if I have it in the right spot of the code. This has helped with not triggering Debug to open but I still get the BadName message box pop-up when doing a Find/Replace.
Sorry for my ignorance on this I don't any experience with putting together VB code.

Here what I have at this time.

Private Sub Worksheet_Activate()
Dim NewName As String
t = (ActiveSheet.Name)
If t = Range("C6") Then Exit Sub
NewName = Range("C6").Text
On Error GoTo BadName
ActiveSheet.Name = Trim(NewName)
Exit Sub
BadName:
MsgBox "Illegal Name"
End Sub
 
Upvote 0
Try
Code:
Private Sub Worksheet_Activate()
   Dim NewName As String
   NewName = Range("C6").Text
   On Error GoTo BadName
   Me.Name = Trim(NewName)
   Exit Sub
BadName:
   MsgBox "Illegal Name"
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,935
Messages
6,122,337
Members
449,078
Latest member
skydd

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