---
title: "ISERR – เช็ค Error (ไม่รวม #N/A)"
url: https://www.thepexcel.com/functions/excel/information/iserr/
type: function-explainer
program: Excel
syntax: =ISERR(value)
date: 2025-12-02
updated: 2025-12-17
scores:
  popularity: 3
  difficulty: 2
  usefulness: 2
---

# ISERR – เช็ค Error (ไม่รวม #N/A)

> เช็ค Error (ไม่รวม #N/A)

## คำอธิบาย

ตรวจสอบว่าเป็นค่า Error หรือไม่ (ยกเว้น #N/A)

## Syntax

```excel
=ISERR(value)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| value | Yes | Any |  | ค่าที่ตรวจสอบ |

## ตัวอย่าง

### 1. ตัวอย่างที่ 1: ตรวจสอบ Error #DIV/0!

```excel
=ISERR(1/0)
```

**ผลลัพธ์:** `TRUE`

การหาร 1 ด้วย 0 ทำให้เกิด Error #DIV/0! ซึ่ง ISERR ตรวจจับได้

### 2. ตัวอย่างที่ 2: ตรวจสอบ Error #N/A

```excel
=ISERR(NA())
```

**ผลลัพธ์:** `FALSE`

ISERR จะคืนค่า FALSE สำหรับ Error #N/A (เพราะ ISERR ไม่รวม #N/A)

### 3. ตัวอย่างที่ 3: ตรวจสอบค่าปกติ

```excel
=ISERR(100)
```

**ผลลัพธ์:** `FALSE`

ค่า 100 ไม่ใช่ Error ดังนั้น ISERR คืนค่า FALSE

## ฟังก์ชันที่เกี่ยวข้อง

- false
- [IFERROR – ดักจับ Error และเปลี่ยนเป็นค่าอื่น](https://www.thepexcel.com/functions/excel/logical/iferror/)
- [IFNA – แทนค่าเมื่อพบ #N/A Error](https://www.thepexcel.com/functions/excel/logical/ifna/)
- [ISERROR – ตรวจสอบว่ามี Error หรือไม่ (ทุกประเภท)](https://www.thepexcel.com/functions/excel/information/iserror/)
- [ISNA – ตรวจสอบว่าค่าเป็น Error #N/A หรือไม่](https://www.thepexcel.com/functions/excel/information/isna/)
- [N – แปลงค่าให้เป็นตัวเลข](https://www.thepexcel.com/functions/excel/information/n/)
- [NA – ฟังก์ชันส่งคืนค่า #N/A](https://www.thepexcel.com/functions/excel/information/na/)

## แหล่งข้อมูลเพิ่มเติม

- [Official Documentation](https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-iserr-function) _(guide)_

---

_Source: [https://www.thepexcel.com/functions/excel/information/iserr/](https://www.thepexcel.com/functions/excel/information/iserr/)_
