Excel 2010 VBA: Changing WorkSheet Names and Ribbons

TechTank

Board Regular
Joined
Sep 5, 2011
Messages
92
Hi All,

I'm using the following code to open specific ribbons based on the Worksheet name (I've setup my RibbonUI's in the XML already).

The code below opens up a particular ribbon based on the Worksheet Name or "CodeName" i.e. Sheet2:

Code:
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
    Select Case Sh.CodeName
    Case "Sheet2": Call RefreshRibbon(Tag:="Environment")
    Case "Sheet3": Call RefreshRibbon(Tag:="Release")
    Case Else: Call RefreshRibbon(Tag:="")
    End Select
End Sub
Or I could use the WorkSheet Name i.e. Environment as below with the same code:

Code:
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
     Select Case Sh.Name
     Case "Environment": Call RefreshRibbon(Tag:="Environment")
     Case "Release Plan Ver Draft 0.1": Call RefreshRibbon(Tag:="Release")
     Case Else: Call RefreshRibbon(Tag:="")
     End Select
 End Sub
This code looks to the Sheet Name\Sheet Code Name and then calls the relevent RibbonUI that I've created. The thing that's giving me trouble is that I can't seem to use a wildcard for something similar to this:

Code:
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
      Select Case Sh.Name
    Case "Environment": Call RefreshRibbon(Tag:="Environment")
    Case "[B]Release Plan Ver *[/B]": Call RefreshRibbon(Tag:="Release")
I need this type of functionality as Users will make copies of this Worksheet and rename it to Release Plan Ver Draft 0.2\0.3\0.4 etc. The reason for changing the ribbon is that several macros on the Release Ribbon will error if they are used on the wrong Worksheet and possible corrupt data.

If anyone has any ideas how I could get this to work I would be very appreciative.

Many thanks,

Mark.
 
Last edited:

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Use an If...Else structure with Like:
Code:
If LCase(Sh.Name) = "environment" then
          Call RefreshRibbon(Tag:="Environment")
    ElseIf LCase(Sh.Name) Like "release plan ver *" Then
        Call RefreshRibbon(Tag:="Release")
End If
 
Upvote 0
Hi rorya,

Thank you for the fantastic bit of code there :)! Works like a charm. Would it be possible to help me a little further? I tried to add an extra 'If' into your code but seem to have come unstuck. Ideally the entire code would look something like this (my problem area is in bold):
Code:
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
If LCase(Sh.Name) = "environment" Then
          Call RefreshRibbon(Tag:="Environment")
If LCase(Sh.Name) Like "release plan ver *" Then
        Call RefreshRibbon(Tag:="Release")
[B]ElseIf LCase(Sh.Name) Like "cover" Then
        Call RefreshRibbon(Tag:="")[/B]
  End If
End Sub
Much appreciated if you can help and sorry for being given an inch and stealing a mile :0)

Mark.
 
Last edited:
Upvote 0
After the first If, the others should all be ElseIf. You also don't appear to need Like in the new condition:
Code:
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
If LCase(Sh.Name) = "environment" Then
          Call RefreshRibbon(Tag:="Environment")
ElseIf LCase(Sh.Name) Like "release plan ver *" Then
        Call RefreshRibbon(Tag:="Release")
ElseIf LCase(Sh.Name) = "cover" Then
        Call RefreshRibbon(Tag:="")
  End If
End Sub
 
Upvote 0
Glad to help. :)
 
Upvote 0

Forum statistics

Threads
1,215,215
Messages
6,123,668
Members
449,114
Latest member
aides

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