软件: Excel
版本:365
想要自订一个函数来计算选取范围中含目标颜色的储存格数量
Function FontColorCount(rng_c As Range, cell_a As Range)
Dim qty As Integer
Dim cel As Range
qty = 0
For Each cel In rng_c
If cel.Font.ColorIndex = cell_a.Font.ColorIndex Then
qty= qty + 1
FontColorCount = qty
End If
Next cel
End Function
但是运行后好像发现公式只能计算出原有储存格文字设定的颜色,若是用条件化格式改变字
https://m.imgur.com/a/KPK6Thc
希望版上各位前辈能指点一下怎么调整语法
十分感谢