Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
エラーをカウントするExcel VBAでUDFを記述しようとしていました(#NA!、#REF!...)。Excel の数式を VBA 言語に変換しようとしましたが、うまくいきませんでした。誰かが解決策を知っていますか?
ありがとう
どうですか
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