发布网友 发布时间:2022-04-30 15:46
共1个回答
热心网友 时间:2023-10-08 20:06
效果如上图,输入公式=统计颜色(A$2:C$4,E2)下拉
代码如图:
代码文本:
Function 统计颜色(a As Range, b As Range)
For Each cel In a
If cel.Interior.Color = b.Interior.Color Then 统计颜色 = 统计颜色 + 1
Next
End Function
注:只能统计标注颜色,无法统计条件格式颜色