I need to apply bold to all cells within a certain range where the formula result is 10 or more. I've tried the following code but it seems to apply bold randomly!
Sub BoldHighHours()
Application.ScreenUpdating = False
Dim c As Object
For Each c In Range("I7:AM1005")
If c.Value >= 10 Then
c.Offset(0, 1).Font.Bold = True
c.Offset(0, 2).Font.Bold = True
Else
c.Offset(0, 1).Font.Bold = False
c.Offset(0, 2).Font.Bold = False
End If
Next
Application.ScreenUpdating = True
End Sub
If you've been following my previous questions/saga you'll understand why I can't use conditional formatting! Autofilter doth not look kindly upon large amounts of conditional formatting and punishes ye with slowdown greatly!