Tab Color based on cell reference

guamlenahans

Board Regular
Joined
Oct 25, 2006
Messages
113
Hi,

I have a workbook with 20 sheets. 10 of those sheets are named after locations I monitor. I'm trying to color code eachtab location based on the value of cell K6. If K6 = 0 then the tab is green if not red. I have a code that turns all sheets based on this formula, but I only want to turn a certain few. Any help is appreciated.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

Dim ws As Worksheet
Dim lColor As Long

If Len(ActiveSheet.Range("k6").Value) > 0 Then
lColor = 4
Else
lColor = 3
End If

For Each ws In Worksheets
ws.Tab.ColorIndex = lColor
Next ws

Set ws = Nothing

End Sub


Rob
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Code:
Sub ColorSpecificSheets()

    Dim arr As Variant
    Dim i As Integer, lColor As Long
    
    lColor = IIf(Not IsEmpty(Range("K6")), 4, 3)

    ' Adjust sheets indexes.
    arr = Array(1, 5, 10, 15, 18, 19, 20)
    
    For i = LBound(arr) To UBound(arr)
        Sheets(i).Tab.ColorIndex = lColor
    Next ws

End Sub
 
Upvote 0

Forum statistics

Threads
1,224,568
Messages
6,179,595
Members
452,927
Latest member
whitfieldcraig

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