---
title: ISFORMULA – เช็คว่ามีสูตร
url: https://www.thepexcel.com/functions/excel/information/isformula/
type: function-explainer
program: Excel
syntax: =ISFORMULA(reference)
date: 2025-12-02
updated: 2025-12-17
scores:
  popularity: 3
  difficulty: 2
  usefulness: 2
---

# ISFORMULA – เช็คว่ามีสูตร

> เช็คว่ามีสูตร

## คำอธิบาย

ตรวจสอบว่าเซลล์มีสูตรหรือไม่

## Syntax

```excel
=ISFORMULA(reference)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| reference | Yes | Reference |  | เซลล์ |

## ตัวอย่าง

### 1. ตัวอย่างที่ 1: ตรวจสอบเซลล์ที่มีสูตร

```excel
=ISFORMULA(CellWithFormula)
```

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

สมมติ CellWithFormula คือ Named Range ที่อ้างถึงเซลล์ที่มีสูตร (เช่น `=SUM(B1:B10)`)
- สูตรจะคืนค่า TRUE

### 2. ตัวอย่างที่ 2: ตรวจสอบเซลล์ที่มีค่าคงที่

```excel
=ISFORMULA(CellWithValue)
```

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

สมมติ CellWithValue คือ Named Range ที่อ้างถึงเซลล์ที่มีเพียงตัวเลขหรือข้อความ (ไม่ใช่สูตร)
- สูตรจะคืนค่า FALSE

### 3. ตัวอย่างที่ 3: ตรวจสอบเซลล์ที่ว่างเปล่า

```excel
=ISFORMULA(EmptyCell)
```

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

สมมติ EmptyCell คือ Named Range ที่อ้างถึงเซลล์ที่ว่างเปล่า
- สูตรจะคืนค่า FALSE

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

- [CELL – ดูข้อมูลเซลล์ (Format/Type)](https://www.thepexcel.com/functions/excel/information/cell/)
- false
- [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/)
- [SUM – ฟังก์ชันรวมตัวเลข](https://www.thepexcel.com/functions/excel/math-and-trigonometry/sum/)
- true
- [TYPE – ตรวจสอบชนิดข้อมูล](https://www.thepexcel.com/functions/excel/information/type/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/isformula-function-e4d1355f-7121-4ef2-801e-3839bfd6b1e5) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-isformula-function) _(guide)_

---

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