Hi all,
I have a code that runs when cells are changed in my spreadsheet
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("B10:H5010")) Is Nothing Then Target.Interior.Color = rgbYellow
End Sub
However some of the cells are formula cells and these...