code to name another sheet tab

Cossie

Active Member
Joined
May 6, 2002
Messages
328
Hello everyone

I currently use this code to name the active sheet tab based on the value of cell b8.

Is it possible to name another sheet tab (say sheet 49) based on the same calculation


Sub Worksheet_Name()
With ActiveSheet
.Name = .[b8].Value & " Business Drivers"
.[C5].Select
End With
End Sub
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Maybe:

Code:
Sub Worksheet_Name() 
With ActiveSheet 
.Name = .[b8].Value & " Business Drivers" 
If ActiveSheet.Index<>49 Then Sheets(49).Name = .[B8].Value & "Business Drivers"
.[C5].Select 
End With 
End Sub

Best regards

Richard
 
Upvote 0

Forum statistics

Threads
1,207,168
Messages
6,076,907
Members
446,239
Latest member
Home Nest

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