I’m using the code below to color a cell if the data changes. It works good.
The problem is I have an option group in a column on the sheet and id doesn’t
change the background when you select a different option. The cell that is linked
works because I see the numbers change. Is there something else I need to make it work for the option buttons.
Private Sub Worksheet_Change(ByVal Target As Range) If Not Intersect(Target, Range("A2", "M154")) Is Nothing Then With Target.Interior .ColorIndex = 6 .Pattern = xlSolid End With End If End Sub
Scott