---
title: Number.Exp – คำนวณ e ยกกำลัง
url: https://www.thepexcel.com/functions/power-query/number-functions/number-exp/
type: function-explainer
program: Power Query
syntax: Number.Exp(number as number) as number
date: 2025-12-12
updated: 2025-12-17
scores:
  popularity: 5
  difficulty: 3
  usefulness: 5
---

# Number.Exp – คำนวณ e ยกกำลัง

> คำนวณ e ยกกำลัง

## คำอธิบาย

Number.Exp คำนวณค่า e^x (e ยกกำลังของตัวเลข) เป็นฟังก์ชันที่ตรงข้ามกับ Number.Log มีประโยชน์ในการคำนวณการเติบโตแบบเอกโพเนนเชียล

## Syntax

```excel
Number.Exp(number as number) as number
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| number | Yes | number |  | ตัวเลขที่ใช้เป็นกำลังของ e |

## ตัวอย่าง

### 1. ตัวอย่างที่ 1: e^1

```excel
Number.Exp(1)
```

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

e^1 คือค่า e ประมาณ 2.71828

### 2. ตัวอย่างที่ 2: e^2

```excel
Number.Exp(2)
```

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

e^2 ประมาณ 7.389

### 3. ตัวอย่างที่ 3: e^0

```excel
Number.Exp(0)
```

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

e^0 เสมอเท่ากับ 1

## คำถามที่พบบ่อย

**Q: ความแตกต่างระหว่าง Number.Exp และ Number.Power**

Exp ใช้ฐาน e เท่านั้น Power ใช้ฐานใดก็ได้ที่ระบุ

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

- [Number.Log – คำนวณลอการิทึมธรรมชาติ](https://www.thepexcel.com/functions/power-query/number-functions/number-log/)
- [Number.Power – เลขยกกำลัง](https://www.thepexcel.com/functions/power-query/number-functions/number-power/)
- [Number.Sqrt – รากที่สอง](https://www.thepexcel.com/functions/power-query/number-functions/number-sqrt/)

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

- [Microsoft Learn: Number.Exp](https://learn.microsoft.com/en-us/powerquery-m/number-exp) _(documentation)_

---

_Source: [https://www.thepexcel.com/functions/power-query/number-functions/number-exp/](https://www.thepexcel.com/functions/power-query/number-functions/number-exp/)_
