For some reason, this code is highlighting the entire M column. I am very new to VBA, sorry if this is obvious. How can I get it to highlight just the negative values in the column?
Sub HighlightNegatives()
Dim rCell As Range
Dim rng As Range
Set rng = Range("M:M")
For Each rCell In rng.Cells
If rCell.Value < 0 Then
rng.Font.Color = RGB(255, 0, 0)
rng.Font.Bold = True
End If
Next
End Sub