我创建了一个条件格式来根据一个单元格的值比较来更改颜色,但我不知道如何将这种格式应用于整个列甚至其他列?(我是否必须使用 for 循环来设置所有单元格的格式?)
'add conditionalFormating for one cell.
Set rngCell = Cells(6, 7)
Set objCF = rngCell.FormatConditions.Add _
(Type:=xlExpression, _
Formula1:="=" & rngCell.Address & " > " & rngCell.offset(, -3).Address)
'set formats for new CF
With objCF
.Font.ColorIndex = 26
.Interior.ColorIndex = 19
End With
提前致谢