我正在制作一个自动报告,我想在某些单元格中添加条件格式。不幸的是,这样做的唯一方法似乎是手动。
是否有人知道仅在函数中添加条件格式的工作流程?
答案 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