---
title: ERF – หาค่า Error Function
url: https://www.thepexcel.com/functions/excel/engineering/erf/
type: function-explainer
program: Excel
syntax: "=ERF(lower_limit, [upper_limit])"
date: 2025-12-02
updated: 2026-05-31
scores:
  popularity: 3
  difficulty: 5
  usefulness: 4
---

# ERF – หาค่า Error Function

> ส่งกลับค่าฟังก์ชัน Error function

## คำอธิบาย

ส่งกลับค่าฟังก์ชัน Error function

## Syntax

```excel
=ERF(lower_limit, [upper_limit])
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| lower_limit | Yes | Number |  | ขอบเขตล่าง |
| upper_limit | Yes | Number |  | ขอบเขตบน |

## ตัวอย่าง

### 1. ค่า Error Function ที่ 1

```excel
=ERF(1)
```

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

ใช้ในการคำนวณสถิติและฟิสิกส์ เพื่อหาพื้นที่ใต้โค้งปกติ (Normal Distribution Curve) จาก 0 ถึง 1

### 2. ค่าติดลบ

```excel
=ERF(-0.5)
```

**ผลลัพธ์:** `-0.5205`

ฟังก์ชัน ERF เป็นฟังก์ชันคี่ (Odd function) คือ ERF(-x) = -ERF(x) ผลลัพธ์จึงติดลบ

### 3. กำหนดขอบเขต

```excel
=ERF(0.5, 1)
```

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

คำนวณ Error Function ในช่วงระหว่างขอบเขตล่าง 0.5 ถึงขอบเขตบน 1 (ERF(upper) - ERF(lower))

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

- [ERFC – หาค่า Complementary Error Function](https://www.thepexcel.com/functions/excel/engineering/erfc/)
- [LOWER – แปลงเป็นตัวพิมพ์เล็ก](https://www.thepexcel.com/functions/excel/text/lower/)
- [NORM.S.DIST – หาค่า Standard Normal Distribution](https://www.thepexcel.com/functions/excel/statistical/norm-s-dist/)
- [ODD – ปัดขึ้นเป็นเลขคี่](https://www.thepexcel.com/functions/excel/math-and-trigonometry/odd/)
- [UPPER – แปลงข้อความให้เป็นตัวพิมพ์ใหญ่ทั้งหมด](https://www.thepexcel.com/functions/excel/text/upper/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/erf-function-c53c7e7b-5482-4b6c-883e-56df3c9af349) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-erf-function) _(guide)_

---

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