FormatConditions.Add 方法 (Excel)
添加新的条件格式。
语法
表达式。添加 (类型、 运算符、 Formula1、 Formula2)
表达 一个代表 FormatConditions 对象的变量。
参数
名称 | 必需/可选 | 数据类型 | 说明 |
---|---|---|---|
Type | 必需 | XlFormatConditionType | 指定条件格式是基于单元格值还是基于表达式。 |
Operator | 可选 | Variant | 条件格式运算符。 可以是以下 XlFormatConditionOperator 常量之一: xlBetween、 xlEqual、 xlGreater、 xlGreaterEqual、 xlLess、 xlLessEqual、 xlNotBetween 或 xlNotEqual。 如果 Type 为 xlExpression ,则忽略 Operator 参数。 |
Formula1 | 可选 | Variant | 与条件格式关联的值或表达式。 可为常量值、字符串值、单元格引用或公式。 |
Formula2 | 可选 | Variant | 当 Operator 为 xlBetween 或 xlNotBetween 时,与条件格式的第二部分关联的值或表达式 (否则,将忽略此参数) 。 可以是常量值、字符串值、单元格引用或公式。 |
返回值
一个 FormatCondition 对象,它表示新的条件格式。
备注
使用 Modify 方法修改现有条件格式,或使用 Delete 方法删除现有格式,然后再添加新格式。
示例
本示例向单元格区域 E1:E10 中添加条件格式。
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
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。