---
title: CONFIDENCE – หา Confidence Interval (เก่า)
url: https://www.thepexcel.com/functions/excel/compatibility/confidence/
type: function-explainer
program: Excel
syntax: "=CONFIDENCE(alpha, standard_dev, size)"
date: 2025-12-02
updated: 2025-12-17
scores:
  popularity: 2
  difficulty: 3
  usefulness: 2
---

# CONFIDENCE – หา Confidence Interval (เก่า)

> หา Confidence Interval (เก่า)

## คำอธิบาย

ฟังก์ชัน CONFIDENCE ใน Excel ใช้สำหรับคำนวณช่วงความเชื่อมั่นสำหรับค่าเฉลี่ยประชากร โดยใช้การแจกแจงแบบปกติ เป็นฟังก์ชันเวอร์ชันเก่าที่ถูกแทนที่ด้วย CONFIDENCE.NORM และ CONFIDENCE.T เพื่อความแม่นยำและยืดหยุ่นที่สูงขึ้น.

## Syntax

```excel
=CONFIDENCE(alpha, standard_dev, size)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| alpha | Yes | Number |  | ระดับนัยสำคัญที่ใช้ในการคำนวณช่วงความเชื่อมั่น (เช่น 0.05 สำหรับช่วงความเชื่อมั่น 95%) |
| standard_dev | Yes | Number |  | ค่าเบี่ยงเบนมาตรฐานของประชากรสำหรับช่วงข้อมูล |
| size | Yes | Number |  | ขนาดตัวอย่างหรือจำนวนจุดข้อมูลในชุดข้อมูล |

## ตัวอย่าง

### 1. หาค่าความคลาดเคลื่อน (Legacy)

```excel
=CONFIDENCE(0.05, 2.5, 50)
```

**ผลลัพธ์:** `0.69...`

ที่ความเชื่อมั่น 95% (Alpha 0.05) SD=2.5 จำนวน 50 ตัวอย่าง

### 2. ช่วงความเชื่อมั่น

```excel
=AVERAGE(Data) + CONFIDENCE(0.05, SD, N)
```

**ผลลัพธ์:** `ขอบเขตบน`

นำค่า Margin ไปบวกกับค่าเฉลี่ยเพื่อหาขอบเขตบน

### 3. เทียบกับฟังก์ชันใหม่

```excel
=CONFIDENCE.NORM(0.05, 2.5, 50)
```

**ผลลัพธ์:** `0.69...`

ให้ผลลัพธ์เท่ากัน แต่แนะนำให้ใช้ CONFIDENCE.NORM

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

- [CONFIDENCE.NORM – หาช่วงความเชื่อมั่นแบบ Normal Distribution](https://www.thepexcel.com/functions/excel/statistical/confidence-norm/)
- [CONFIDENCE.T – หา Confidence Interval ด้วย T-Distribution](https://www.thepexcel.com/functions/excel/statistical/confidence-t/)
- [FISHERINV – แปลงค่า Fisher กลับเป็นสหสัมพันธ์](https://www.thepexcel.com/functions/excel/statistical/fisherinv/)
- [T.TEST – ทดสอบสมมติฐานของค่าเฉลี่ย](https://www.thepexcel.com/functions/excel/statistical/t-test/)
- [Z.TEST – ทดสอบสมมติฐาน Z-test](https://www.thepexcel.com/functions/excel/statistical/z-test/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/confidence-function-75ccc007-f77c-4343-bc14-673642091ad6) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-confidence-function) _(guide)_

---

_Source: [https://www.thepexcel.com/functions/excel/compatibility/confidence/](https://www.thepexcel.com/functions/excel/compatibility/confidence/)_
