excel – 检查是否应用了条件格式

Using Excel VBA Code is there any way by which I can check whether a
particular cell has satisfied Conditional Formatting or not?

我在一列中的数据超过80000个单元格.

我使用了以下代码,但它为Interior.ColorIndex或Interior.PatternIndex或Font.Bold提供了相同的值,无论是否应用了Coditional Formatting

Sub Check_CF()
    MsgBox Range("B4").Interior.PatternColorIndex
End Sub

我的条件格式规则并不重要.如果我能够检查它是否被应用,我可以更改规则.

请帮忙.提前致谢.

最佳答案 找到这篇相当长的文章,其中包含有关该主题的示例函数,可能对您有所帮助:

http://www.xldynamic.com/source/xld.CFConditions.html

点赞