我有一个VBA sub,在其中我只能为非突出显示的单元格做一些事情。但我不知道怎么做,我不觉得这样!
If Cells(10,10) NOT Highlighted then
有人可以告诉我如何在VBA中翻译吗?
提前谢谢!
答案 0 :(得分:0)
您要检查细胞内部颜色。范围( “A1”)。Interior.Color
Private Sub CommandButton1_Click()
If Range("A1").Interior.Color = 16777215 Then
Range("A1").Value = "non-highlighted"
End If
End Sub