Excel UDF计算错误

时间:2014-02-18 17:13:02

标签: excel vba count user-defined-functions excel-udf

我试图在Excel VBA中编写一个可以计算错误的UDF(#NA!,#REF!...)。 我试图将Excel公式转换为VBA语言芽没有成功。 有人知道解决方案吗?

由于

1 个答案:

答案 0 :(得分:0)

怎么样

Public Function CountErr(cells As range) As Long
   Dim cell As range
   For Each cell In cells
      If Application.WorksheetFunction.IsError(cell) Then CountErr = CountErr + 1
   Next
End Function