Shared excel not picking up colour change

Puggwash63

Board Regular
Joined
Jul 27, 2009
Messages
174
I have an excel sheet that has a program to colour the Tab when either the Rows are showing Green or Red

If the spreadsheet is not Shared, the formula works, but if the spreadsheet is Shared, it will not pick up the colour when any of the cells in column L are either chosen as Yes (should turn Green if there isnt any Red cells) or No (Should turn Red, even if there are Green cells in Column L showing)

Hope this makes sense and you can help

Private Sub Worksheet_Change(ByVal Target As Range)
Dim rng As Range: Set rng = Range([L8], Cells(Rows.Count, "L").End(xlUp))
If Not Intersect(Target, rng) Is Nothing Then
If WorksheetFunction.CountIf(rng, "No") <> 0 Then
ActiveSheet.Tab.Color = vbRed
ElseIf WorksheetFunction.CountIf(rng, "") = rng.Cells.Count Then
ActiveSheet.Tab.ColorIndex = xlColorIndexNone
ElseIf WorksheetFunction.CountIf(rng, "Yes") + WorksheetFunction.CountIf(rng, "") = rng.Cells.Count Then
ActiveSheet.Tab.Color = vbGreen
Else
ActiveSheet.Tab.ColorIndex = xlColorIndexNone
End If
End If
End Sub
 

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.

Forum statistics

Threads
1,215,688
Messages
6,126,210
Members
449,299
Latest member
KatieTrev

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