Give color to sheets?

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Re: how to give color to sheets?

Do you mean the entire sheet or the sheet tab name?
 
Upvote 0
Re: how to give color to sheets?

sheet tab only,
is it possible to give colors for multiple sheet tabs?
 
Upvote 0
Re: how to give color to sheets?

sheet tab only,
is it possible to give colors for multiple sheet tabs?
Immediately after you add the new sheet, it is the active sheet so you can execute this line of code next (where I assume the color for the tab is red)...

ActiveSheet.Tab.Color = vbRed
 
Upvote 0
Re: how to give color to sheets?

This macro will color the tab for Sheet1 red. If you want all sheets tabs colored, you can loop through them.
Code:
Sub ColorTabs()
    Sheets("Sheet1").Tab.Color = 255
End Sub
 
Upvote 0
Re: how to give color to sheets?

If it is select sheets, then we need to know the name of those sheets.
 
Upvote 0
Re: how to give color to sheets?

your code giving same color to both sheets
if i wan to give another color for Report sheet?
 
Upvote 0

Forum statistics

Threads
1,216,011
Messages
6,128,265
Members
449,436
Latest member
blaineSpartan

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