---
title: IMABS – หาค่าสัมบูรณ์ (Complex)
url: https://www.thepexcel.com/functions/excel/engineering/imabs/
type: function-explainer
program: Excel
syntax: =IMABS(inumber)
date: 2025-12-02
updated: 2026-05-31
scores:
  popularity: 3
  difficulty: 5
  usefulness: 4
---

# IMABS – หาค่าสัมบูรณ์ (Complex)

> หาค่าสัมบูรณ์ (Modulus) ของจำนวนเชิงซ้อน

## คำอธิบาย

หาค่าสัมบูรณ์ (Modulus) ของจำนวนเชิงซ้อน

## Syntax

```excel
=IMABS(inumber)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| inumber | Yes | Text |  | จำนวนเชิงซ้อน |

## ตัวอย่าง

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

```excel
=IMABS("3+4i")
```

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

sqrt(3^2 + 4^2)

### 2. ตัวอย่าง (with different value)

```excel
=IMABS("3+6i")
```

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

Similar to previous example but with different input values. Formula: =IMABS("3+6i") returns 6.7082.

### 3. ตัวอย่าง (with variation 2)

```excel
=IMABS("3+12i")
```

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

Similar to previous example but with different input values. Formula: =IMABS("3+12i") returns 12.3693.

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

- [ABS – หาค่าสัมบูรณ์ (Absolute Value)](https://www.thepexcel.com/functions/excel/math-and-trigonometry/abs/)
- [COMPLEX – สร้างจำนวนเชิงซ้อน](https://www.thepexcel.com/functions/excel/engineering/complex/)
- [IMSUB – ลบจำนวนเชิงซ้อน](https://www.thepexcel.com/functions/excel/engineering/imsub/)
- [SQRT – ถอดรากที่สอง](https://www.thepexcel.com/functions/excel/math-and-trigonometry/sqrt/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/imabs-function-b31e73c6-d90c-4062-90bc-8eb351d765a1) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-imabs-function) _(guide)_

---

_Source: [https://www.thepexcel.com/functions/excel/engineering/imabs/](https://www.thepexcel.com/functions/excel/engineering/imabs/)_
