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

# IMSUM – บวกจำนวนเชิงซ้อน

> IMSUM ใช้บวกจำนวนเชิงซ้อน (complex number) หลายจำนวนที่อยู่ในรูปข้อความ เช่น "3+4i" หรือ "5-2i" เหมา

## คำอธิบาย

IMSUM ใช้บวกจำนวนเชิงซ้อน (complex number) หลายจำนวนที่อยู่ในรูปข้อความ เช่น "3+4i" หรือ "5-2i" เหมาะกับงานวิศวกรรม/ไฟฟ้า/สัญญาณ ที่ต้องคำนวณจำนวนเชิงซ้อนในตาราง Excel

## Syntax

```excel
=IMSUM(inumber1, [inumber2], ...)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| inumber1 | Yes | Text |  | จำนวนเชิงซ้อนตัวแรกในรูปข้อความ เช่น "3+4i" หรือ "-2+0i" |
| inumber2 | No | Text | 0 | จำนวนเชิงซ้อนตัวถัดไป (ใส่เพิ่มได้หลายตัว) ถ้าไม่ใส่จะเทียบเท่ากับการบวกด้วย 0 |

## ตัวอย่าง

### 1. ตัวอย่างที่ 1: บวกจำนวนเชิงซ้อน 2 จำนวน

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

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

บวกส่วนจริง (3+1) และส่วนจินตภาพ (4i+2i) จะได้ผลลัพธ์เป็น "4+6i"

### 2. ตัวอย่างที่ 2: บวกค่าแบบมีลบในส่วนจินตภาพ

```excel
=IMSUM("3+4i", "5-2i")
```

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

บวกจำนวนเชิงซ้อนที่มีเครื่องหมายลบในส่วนจินตภาพ จะได้ 3+5 = 8 และ 4i-2i = 2i จึงเป็น "8+2i"

### 3. ตัวอย่างที่ 3: บวกหลายจำนวนพร้อมกัน

```excel
=IMSUM("2+0i", "-2+0i", "5+1i")
```

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

IMSUM รับอาร์กิวเมนต์ได้หลายตัว ทำให้รวมหลายจำนวนเชิงซ้อนในสูตรเดียวได้ เช่น 2 + (-2) + 5 = 5 และส่วนจินตภาพเหลือ 1i

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

- [COMPLEX – สร้างจำนวนเชิงซ้อน](https://www.thepexcel.com/functions/excel/engineering/complex/)
- [IMSUB – ลบจำนวนเชิงซ้อน](https://www.thepexcel.com/functions/excel/engineering/imsub/)
- [IMPRODUCT – คูณจำนวนเชิงซ้อน](https://www.thepexcel.com/functions/excel/engineering/improduct/)

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

- [เอกสาร Microsoft Support: IMSUM](https://support.microsoft.com/en-us/office/imsum-function-81542999-5f1c-4da6-9ffe-f1d7aaa9457f) _(official)_
- [คำอธิบายและตัวอย่างเพิ่มเติม: IMSUM (ExcelJet)](https://exceljet.net/excel-functions/excel-imsum-function) _(guide)_

---

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