我目前正在构建一个小型自定义函数,用于根据内部单元格颜色对范围进行求和。 由于某种原因,该函数返回#NAME。有谁能告诉我出了什么问题?
Function sumGrey(rng As Range)
Dim cell As Range
For Each cell In rng
If cell.Interior.ColorIndex = 15 Then
sumGrey = sumGrey + cell.Value
End If
Next cell
End Function
谢谢。