Is there a way to rewrite this:
Into something like this:
The code above doesn't actually work, but I'm trying to see if it's possible to apply the font changes without having to select the cell.
Code:
Sheets("Sheet1").Select
Range("B4").Select
With Selection.Font
.ColorIndex = 10
End With
Code:
Sheets("Sheet1").Range("B4").Selection.Font.ColorIndex = 10