los valores de error devuelto de funciones definidas por el usuario utilizando VBA en Microsoft Excel
Devuelve valores de error de funciones definidas por el usuario
Con la función de ejemplo a continuación, puede hacer que las funciones definidas por el usuario devuelvan valores de error como lo hacen las funciones integradas en Excel.
Function DummyFunctionWithErrorCheck(InputValue As Variant) As Variant
If InputValue < 0 Then ' return an error value
DummyFunctionWithErrorCheck = CVErr(xlErrNA) ' retunerer #I/T!
' xlErrDiv0, xlErrNA, xlErrName, xlErrNull, xlErrNum , xlErrRef, xlErrValue
Exit Function
End If
' do the calculation
DummyFunctionWithErrorCheck = InputValue * 2
End Function