이 함수는 Google Sheets에서도 Excel과 동일하게 작동합니다 — 구문과 인수가 같습니다.
ISERR(value)The ISERR function returns TRUE if the provided value is an error such as #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL!. Unlike the ISERROR function, ISERR specifically excludes the #N/A error from its TRUE result.
=ISERR(1/0)결과: TRUE
Returns TRUE because 1/0 results in the #DIV/0! error.
=ISERR(NA())결과: FALSE
Returns FALSE because ISERR ignores the #N/A error.
ISERR returns FALSE for #N/A errors, while ISERROR returns TRUE for all error types including #N/A.