我想知道如何訪問標題爲「適用於」的條件格式的列並輸入自己的條件。 我已經包含了一個截圖,以供參考。使用VBA將條件格式應用於一系列單元格
我在條件格式添加代碼的語法是,
With Selection
.FormatConditions.Delete
.FormatConditions.Add Type:=xlExpression, Formula1:="=" & c.Address & "=TRUE"
.
.
.
End With
我相信代碼應該在那裏加入,但我只是找不到正確的語法。
更新:
我更新了我的代碼看起來像這樣,
With Range(Cells(c.Row, "B"), Cells(c.Row, "N"))
.FormatConditions.Delete
.FormatConditions.Add Type:=xlExpression, Formula1:="=" & c.Address
.FormatConditions(1).Interior.ColorIndex = 15 'change for other color when ticked
End With
這實際上將使相關的地方,我放在複選框的特定範圍的行,有其背景顏色改變。 複選框的位置由c.Address表示,其中「c」包含我選擇放置複選框的單元格的位置。
謝謝,你的線索幫助我很多 – winhung