Error NumberDefault Error Message5Procedure call or argument is not valid6Overflow7Out of memory11Division by zero51Internal error52Bad file name or number53File not found55File already open76Path not found482Printer error On Error Resume Next"Statement" If Err.Number 0 Then " statements" ''''''''''''''''''''' Imports SystemPubl..
vba함수는 엑셀의 특성으로 기본적으로 'As Varient'로 처리 되기 때문에 숫자 vs 글자 구분을 못할 때가 가끔 있음. 공학수식 관련에는 더욱 민감한데, vba함수의 변수에 잘못된 Type으로 입력하면 Error No 13이 발생함이럴 때를 위해 Err No. 13 (Type Mismatch) 은 따로 처리하는 것이 좋다. 원하지 않는 값을 입력하면 무시를 하고 넘어 갈 수도 있지만, 계산항목에는 잘못된 값이 들어가 있음에도 인지를 못할 때가 있다. Public Function PropertyTP(ByVal output As String, ByVal Name1 As String) On Error GoTo ErrorHandler Dim Property_temp A..