---
title: ISOMITTED – เช็คว่า Argument หายไป (LAMBDA)
url: https://www.thepexcel.com/functions/excel/information/isomitted/
type: function-explainer
program: Excel
syntax: =ISOMITTED(argument)
date: 2025-12-02
updated: 2025-12-17
scores:
  popularity: 3
  difficulty: 2
  usefulness: 2
---

# ISOMITTED – เช็คว่า Argument หายไป (LAMBDA)

> เช็คว่า Argument หายไป (LAMBDA)

## คำอธิบาย

ตรวจสอบว่าอาร์กิวเมนต์ในฟังก์ชัน LAMBDA หายไปหรือไม่

## Syntax

```excel
=ISOMITTED(argument)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| argument | Yes | Any |  | อาร์กิวเมนต์ |

## ตัวอย่าง

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

```excel
=ISOMITTED(x)
```

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

ใช้ใน LAMBDA เพื่อเช็ค Optional Arg

### 2. ตรวจสอบว่าเซลล์ถูกละเว้นในอาร์เรย์

```excel
=ISOMITTED(A1:A5)
```

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

ISOMITTED ใช้ในฟังก์ชัน custom เพื่อตรวจสอบค่าที่ถูกละเว้น

### 3. Example 3

```excel
=IF(ISOMITTED(Param), "ค่าเริ่มต้น", Param)
```

**ผลลัพธ์:** `"ค่าเริ่มต้น"`

ใช้เพื่อให้ค่าเริ่มต้นเมื่อไม่ได้ระบุพารามิเตอร์

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

- [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/)
- [LAMBDA – สร้างฟังก์ชันที่กำหนดเอง](https://www.thepexcel.com/functions/excel/logical/lambda/)
- [TYPE – ตรวจสอบชนิดข้อมูล](https://www.thepexcel.com/functions/excel/information/type/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/isomitted-function-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-isomitted-function) _(guide)_

---

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