在下面的代碼中,如果代碼在列G的單元格中找到「0」,那麼該行中的幾個單元格將被着色,我希望這些單元格僅在在同一行的G列和H列中發現值「0」,這怎麼辦?爲兩個單元格的值選擇條件併爲行着色
With Worksheets("Sheet3")
For Each cell In Range("G2:G" & LastRow)
If cell.Value = "0" Then
cell.Range("A1:F1").Offset(0, -5).Interior.ColorIndex = 20
ElseIf cell.Value = "1" Then
cell.Range("A1:F1").Offset(0, -5).Interior.ColorIndex = 43
Else
cell.EntireRow.Interior.ColorIndex = xlNone
End If
Next
End With
條件格式:'= AND($ G1 = 0 ,$ H1 = 0)' –