Give color to sheets?

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
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,217,236
Messages
6,135,406
Members
449,930
Latest member
Theripped

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