Remarks

The FormatConditions collection can contain multiple conditional formats. Each format is represented by a object.

For more information about conditional formats, see the object.

Use the FormatConditions property to return a FormatConditions object. Use the method to create a new conditional format, and use the method to change an existing conditional format.

Example

The following example adds a conditional format to cells E1:E10.

Visual Basic for Applications
With Worksheets(1).Range("e1:e10").FormatConditions _ .Add(xlCellValue, xlGreater, "=$a$1") With .Borders .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = 6 End With With .Font .Bold = True .ColorIndex = 3 End With End With
Format Conditions Collection Object FormatCondition Collection FormatCondition Collection Object What are formatconditions?

See also: