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

# IMPRODUCT – คูณจำนวนเชิงซ้อน

> คูณจำนวนเชิงซ้อนหลายจำนวนเข้าด้วยกัน

## คำอธิบาย

คูณจำนวนเชิงซ้อนหลายจำนวนเข้าด้วยกัน

## Syntax

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

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| inumber1 | Yes | Text |  | จำนวนที่ 1 |

## ตัวอย่าง

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

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

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

คูณกัน. IMPRODUCT formula returns: "27+11i"

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

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

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

Similar to previous example but with different input values. Formula: =IMPRODUCT("3+4i", "5-4i") returns 31+8i.

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

```excel
=IMPRODUCT("3+4i", "5-9i")
```

**ผลลัพธ์:** `51-7i`

Similar to previous example but with different input values. Formula: =IMPRODUCT("3+4i", "5-9i") returns 51-7i.

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

- [IMPOWER – ยกกำลัง (Complex)](https://www.thepexcel.com/functions/excel/engineering/impower/)
- [IMSUB – ลบจำนวนเชิงซ้อน](https://www.thepexcel.com/functions/excel/engineering/imsub/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/improduct-function-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-improduct-function) _(guide)_

---

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