Hello Paul,
This is written for Excel 2003. Not sure if this will work the same on later versions of Excel.
Sub addFormula3()
Dim Cell As Range
Dim FC As Object
Dim Rng As Range
Set Rng = Sheet1.Range("P2")
Set Rng = Rng.Resize(Sheet1.UsedRange.Rows.Count - Rng.Row + 1, 1)
Rng.FormulaR1C1 = "=IF(RC[-2]>RC[-1],""OVER CAPACITY"","""")"
For Each Cell In Rng
If Cell.FormatConditions.Count > 0 Then
Cell.FormatConditions.Delete
End If
Set FC = Cell.FormatConditions.Add(xlExpression, , "=IF(RC[-2]>RC[-1],True,False)")
FC.Font.Bold = True
FC.Font.ColorIndex = 6
Next Cell
End Sub
Bookmarks