Conditional Tab Color

WalkaboutTigger

New Member
Joined
Apr 23, 2004
Messages
2
Is it possible to set the worksheet's tab color conditionally based upon the value of cells or the result of a function?

If I cannot do this easily, is it possible, via VBA, to use the Tab property of the Worksheet object to set the Color property of the Tab object?

Any and all help would be greatly appreciated.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Something like this, put in the sheet code page for Sheet 1, will turn the tab red if cell A1 is 22. Modify to suit.
Code:
Private Sub worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" Then
    trigger = Range("A1:A1").Value
    If trigger = 22 Then
        Worksheets(1).Tab.ColorIndex = 3
        Else
        Worksheets(1).Tab.ColorIndex = xlColorIndexNone
    End If
End If
End Sub

HTH
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,717
Members
448,985
Latest member
chocbudda

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