1 つのセルの値比較に基づいて色を変更する条件付き書式を作成しましたが、この書式を列全体や他の列に適用する方法がわかりません。(すべてのセルの書式を設定するために 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
前もって感謝します