Excel 2007 如何自动执行条件格式

发布于 2024-11-10 04:44:14 字数 81 浏览 1 评论 0原文

我有很多单元格可以为其分配公式以进行条件格式设置。

我尝试录制宏以使其自动化,但未记录条件格式。是否可以编写一些 VBA 来完成它?

I have lots of cells to assign a formula to for conditional formatting.

I tried to record a macro to automate it but conditional formatting is not recorded. Is it even possible to write some VBA to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如何视而不见 2024-11-17 04:44:14

这对我有用:

With Range("A1")
    .FormatConditions.Add Type:=xlCellValue, Operator:=xlBetween, _
        Formula1:="2", Formula2:="3"
    .FormatConditions(1).Interior.ColorIndex = 33
End With

即 2 到 3 之间的值会将单元格染成蓝色。

This works for me:

With Range("A1")
    .FormatConditions.Add Type:=xlCellValue, Operator:=xlBetween, _
        Formula1:="2", Formula2:="3"
    .FormatConditions(1).Interior.ColorIndex = 33
End With

i.e. values between 2 and 3 will colour the cell blue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文