作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在尝试使用字体颜色作为在 if 语句中进行检查的条件。这似乎非常容易,但 VBA 似乎无法做到。
我无法显示我的实际代码,因为其中包含专有信息,但我什至尝试了我的代码的简单版本但无济于事。该代码如下所示。
Sub Testing()
Cells(1,1).Font.Color = -16776961
If Cells(1,1).Font.Color = -16776961 Then
Cells(1,3) = "Worked!"
Else
Cells(1,3) = "Didn't Work!"
End If
End Sub
最佳答案
使用 RGB代替功能。 (不确定负值来自哪里?)
Sub Testing()
Cells(1, 1).Font.Color = RGB(255, 0, 0)
If Cells(1, 1).Font.Color = RGB(255, 0, 0) Then
Cells(1, 3) = "Worked!"
Else
Cells(1, 3) = "Didn't Work!"
End If
End Sub
关于excel - 在 If 语句中使用 Font.Color 作为条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55868788/
我是一名优秀的程序员,十分优秀!