Try this:
Code:Sub FixFormats() Dim c As Range For Each c In Range("B2:B" & Range("B65536").End(xlUp).Row) With c.FormatConditions(1) If c.Value > Evaluate(.Formula1) Then c.Interior.ColorIndex = .Interior.ColorIndex c.Font.Bold = .Font.Bold c.Font.ColorIndex = .Font.ColorIndex End If End With c.FormatConditions.Delete Next c End Sub


LinkBack URL
About LinkBacks



Reply With Quote

Bookmarks