gpt4 book ai didi

excel - 使用宏计算条件格式单元格的数量

转载 作者:行者123 更新时间:2023-12-04 22:22:42 25 4
gpt4 key购买 nike

我正在尝试计算连续的条件格式单元格的数量。

然而,这个函数返回单元格的总数,即使是那些没有通过条件格式标准的单元格:

Public Function CountColour(pRange1 As Range, pRange2 As Range) As Double
Application.Volatile
Dim rng As Range
For Each rng In pRange1
If rng.FormatConditions(1).Interior.Color = pRange2.FormatConditions(1).Interior.Color Then
CountColour = CountColour + 1
End If
Next
End Function

任何想法?

这是一项学校测试,需要计算正确答案的数量。

school test

最佳答案

跳过尝试计算条件格式并计算条件:

=SUMPRODUCT(--($E$3:$G$3=$E5:$G5))
enter image description here

关于excel - 使用宏计算条件格式单元格的数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61019292/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com