---
title: ISNONTEXT – เช็คว่าไม่ใช่ Text
url: https://www.thepexcel.com/functions/excel/information/isnontext/
type: function-explainer
program: Excel
syntax: =ISNONTEXT(value)
date: 2025-12-02
updated: 2025-12-17
scores:
  popularity: 3
  difficulty: 1
  usefulness: 3
---

# ISNONTEXT – เช็คว่าไม่ใช่ Text

> เช็คว่าไม่ใช่ Text

## คำอธิบาย

ตรวจสอบว่าไม่ใช่ข้อความหรือไม่ (รวมถึงค่าว่างด้วย)

## Syntax

```excel
=ISNONTEXT(value)
```

## Arguments

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

## ตัวอย่าง

### 1. ตัวอย่าง

```excel
=ISNONTEXT(124)
```

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

ตัวเลขไม่ใช่ Text

### 2. ตรวจสอบว่าข้อมูลไม่ใช่ข้อความ

```excel
=ISNONTEXT(123)
```

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

ฟังก์ชัน ISNONTEXT ส่งกลับ TRUE เมื่อค่า 123 (ตัวเลข) ไม่ใช่ข้อความ

### 3. ใช้กับสูตร IF เพื่อการตรวจสอบข้อมูล

```excel
=IF(ISNONTEXT(A1), "เป็นตัวเลข", "เป็นข้อความ")
```

**ผลลัพธ์:** `"เป็นตัวเลข"`

หากเซลล์ A1=456 (ตัวเลข) ผลจะแสดง "เป็นตัวเลข" เพราะ ISNONTEXT ส่งกลับ TRUE

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

- [IF – ฟังก์ชันตรรกะพื้นฐาน](https://www.thepexcel.com/functions/excel/logical/if/)
- [ISBLANK – ตรวจสอบว่าเซลล์ว่างเปล่า](https://www.thepexcel.com/functions/excel/information/isblank/)
- [ISNUMBER – ตรวจสอบว่าเป็นตัวเลขหรือไม่](https://www.thepexcel.com/functions/excel/information/isnumber/)
- [ISTEXT – ตรวจสอบว่าเป็นข้อความหรือไม่](https://www.thepexcel.com/functions/excel/information/istext/)
- [TEXT – แปลงค่าตัวเลข/วันที่เป็นข้อความตามรูปแบบที่กำหนด](https://www.thepexcel.com/functions/excel/text/text/)
- true
- [TYPE – ตรวจสอบชนิดข้อมูล](https://www.thepexcel.com/functions/excel/information/type/)

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

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

---

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