반응형
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
- Mac
- dataframe
- numpy
- GIT
- Github
- Apache
- Python
- string
- hive
- django
- array
- Google Spreadsheet
- Kotlin
- Excel
- list
- Tkinter
- PostgreSQL
- c#
- matplotlib
- PySpark
- Redshift
- 파이썬
- math
- SQL
- Google Excel
- PANDAS
- gas
- google apps script
- Java
Archives
- Today
- Total
목록iserror (1)
달나라 노트
Excel : iserror 함수(Error인지 아닌지의 여부를 반환)
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가 반환됩니다.
Excel
2021. 2. 25. 01:17