I want to run the code below when a value is changed in a worksheet.
I want the changed cell to color blue, but nothing happens when a cell value is entered...
Can somebody tell me why ?
I want the changed cell to color blue, but nothing happens when a cell value is entered...
Can somebody tell me why ?
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Target.Font.ColorIndex = 5
End Sub