没有Excel GUI的条件格式

时间:2015-05-27 14:56:12

标签: excel excel-vba vba

我正在制作一个自动报告,我想在某些单元格中添加条件格式。不幸的是,这样做的唯一方法似乎是手动。

是否有人知道仅在函数中添加条件格式的工作流程?

1 个答案:

答案 0 :(得分:3)

您可以通过FormatConditions

添加

E.g。值bb的红色bg颜色> 3

With Range("a1:a10").FormatConditions.Add( _
    XlFormatConditionType.xlCellValue, _
    XlFormatConditionOperator.xlGreater, _
    "=3")

    .SetFirstPriority
    .Interior.Color = RGB(255, 0, 0)
End With