---
title: IMSUB – ลบจำนวนเชิงซ้อน
url: https://www.thepexcel.com/functions/excel/engineering/imsub/
type: function-explainer
program: Excel
syntax: "=IMSUB(inumber1, inumber2)"
date: 2025-12-02
updated: 2026-05-31
scores:
  popularity: 3
  difficulty: 5
  usefulness: 4
---

# IMSUB – ลบจำนวนเชิงซ้อน

> ฟังก์ชัน IMSUB ใน Excel ใช้สำหรับคำนวณผลต่างของจำนวนเชิงซ้อนสองจำนวน โดยส่งกลับค่าจำนวนเชิงซ้อนที่เป

## คำอธิบาย

ฟังก์ชัน IMSUB ใน Excel ใช้สำหรับคำนวณผลต่างของจำนวนเชิงซ้อนสองจำนวน โดยส่งกลับค่าจำนวนเชิงซ้อนที่เป็นผลลัพธ์ของการลบ เหมาะสำหรับการคำนวณทางวิศวกรรม ฟิสิกส์ หรือคณิตศาสตร์ที่เกี่ยวข้องกับจำนวนเชิงซ้อน.

## Syntax

```excel
=IMSUB(inumber1, inumber2)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| inumber1 | Yes | Text |  | ตัวตั้ง |
| inumber2 | Yes | Text |  | ตัวลบ |

## ตัวอย่าง

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

```excel
=IMSUB("3+4i", "1+2i")
```

**ผลลัพธ์:** `"2+2i"`

ลบกัน. IMSUB formula returns: "2+2i"

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

```excel
=IMSUB("3+4i", "1+3i")
```

**ผลลัพธ์:** `2+i`

Similar to previous example but with different input values. Formula: =IMSUB("3+4i", "1+3i") returns 2+i.

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

```excel
=IMSUB("3+4i", "1+6i")
```

**ผลลัพธ์:** `2-2i`

Similar to previous example but with different input values. Formula: =IMSUB("3+4i", "1+6i") returns 2-2i.

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

- [IMSUM – บวกจำนวนเชิงซ้อน](https://www.thepexcel.com/functions/excel/engineering/imsum/)
- [IMPRODUCT – คูณจำนวนเชิงซ้อน](https://www.thepexcel.com/functions/excel/engineering/improduct/)
- [IMDIV – หารจำนวนเชิงซ้อน](https://www.thepexcel.com/functions/excel/engineering/imdiv/)
- [IMABS – หาค่าสัมบูรณ์ (Complex)](https://www.thepexcel.com/functions/excel/engineering/imabs/)
- [IMARGUMENT – หาค่า Theta (Argument)](https://www.thepexcel.com/functions/excel/engineering/imargument/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/imsub-function-2e404b4d-4935-4e85-9f52-cb08b9a45054) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-imsub-function) _(guide)_

---

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