반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- PostgreSQL
- numpy
- PySpark
- hive
- GIT
- Google Excel
- PANDAS
- Tkinter
- Apache
- gas
- 파이썬
- google apps script
- Kotlin
- Redshift
- c#
- django
- dataframe
- Python
- array
- SQL
- string
- Excel
- Github
- Google Spreadsheet
- Java
- list
- matplotlib
- math
- Mac
Archives
- Today
- Total
달나라 노트
Excel : iserror 함수(Error인지 아닌지의 여부를 반환) 본문
728x90
반응형
iserror(value)
iserror(parameter)
iserror 함수는 parameter로 제시된 값(또는 식)의 결과가 Error라면 TRUE를 Error가 아니라면 FALSE를 반환합니다.
#DIV/0!
#N/A
#VALUE!
#REF!
#NAME?
#NUM!
#NULL!
#SPILL!
에러의 종류는 위와 같습니다.
=iserror(vlookup(A1, C1:B10, 2, 0))
예를들어 위 식에서 vlookup의 결과가 제대로 출력된다면 error가 아니므로 FALSE가 반환될 것입니다.
그러나 만약 vlookup으로 A1의 값을 찾을 수 없어 #N/A라는 에러가 뜬다면 iserror의 결과에 의해 TRUE가 반환됩니다.
728x90
반응형
'Excel' 카테고리의 다른 글
Excel : find, search (문자열에서 원하는 텍스트 위치 찾기) (0) | 2021.03.24 |
---|---|
Excel : edate 함수 (날짜에 월 단위 연산하기) (0) | 2021.02.25 |
Excel : text function (원하는 format으로 값 표시하기) (0) | 2021.01.27 |
Excel : today, now, time function (0) | 2021.01.27 |
Excel : filter function (0) | 2021.01.23 |
Comments