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

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).

Forum statistics

Threads
1,216,146
Messages
6,129,134
Members
449,488
Latest member
qh017

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