---
title: NORMDIST – หาค่า Normal Distribution (เก่า)
url: https://www.thepexcel.com/functions/excel/compatibility/normdist/
type: function-explainer
program: Excel
syntax: "=NORMDIST(x, mean, standard_dev, cumulative)"
date: 2025-12-02
updated: 2026-05-31
scores:
  popularity: 2
  difficulty: 3
  usefulness: 2
---

# NORMDIST – หาค่า Normal Distribution (เก่า)

> ฟังก์ชัน NORMDIST ใน Excel ใช้สำหรับคำนวณค่าความน่าจะเป็นของการแจกแจงปกติ (Normal Distribution) สำหร

## คำอธิบาย

ฟังก์ชัน NORMDIST ใน Excel ใช้สำหรับคำนวณค่าความน่าจะเป็นของการแจกแจงปกติ (Normal Distribution) สำหรับค่าที่ระบุ โดยใช้ค่าเฉลี่ยและส่วนเบี่ยงเบนมาตรฐาน ฟังก์ชันนี้เป็นเวอร์ชันเก่าและถูกแทนที่ด้วย NORM.DIST.

## Syntax

```excel
=NORMDIST(x, mean, standard_dev, cumulative)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| x | Yes | Number |  | ค่าที่คุณต้องการประเมินการแจกแจง |
| mean | Yes | Number |  | ค่าเฉลี่ยเลขคณิตของการแจกแจง |
| standard_dev | Yes | Number |  | ค่าเบี่ยงเบนมาตรฐานของการแจกแจง |
| cumulative | Yes | Boolean |  | ค่าตรรกะที่ระบุชนิดของฟังก์ชัน: TRUE สำหรับฟังก์ชันการแจกแจงสะสม (CDF) และ FALSE สำหรับฟังก์ชันความหนาแน่นความน่าจะเป็น (PDF). |

## ตัวอย่าง

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

```excel
=NORMDIST(42, 40, 1.5, TRUE)
```

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

แทนด้วย NORM.DIST

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

```excel
=NORMDIST(42, 40, 2, TRUE)
```

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

Similar to previous example but with different input values. Formula: =NORMDIST(42, 40, 2, TRUE) returns 0.841345.

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

```excel
=NORMDIST(42, 40, 4, FALSE)
```

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

Similar to previous example but with different input values. Formula: =NORMDIST(42, 40, 4, FALSE) returns 0.0880163.

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

- [NORM.DIST – คำนวณค่าการแจกแจงปกติ](https://www.thepexcel.com/functions/excel/statistical/norm-dist/)
- [NORM.INV – หาค่าผกผันของการแจกแจงปกติ](https://www.thepexcel.com/functions/excel/statistical/norm-inv/)
- [STANDARDIZE – แปลงค่าให้เป็น Z-Score](https://www.thepexcel.com/functions/excel/statistical/standardize/)
- [Z.TEST – ทดสอบสมมติฐาน Z-test](https://www.thepexcel.com/functions/excel/statistical/z-test/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/normdist-function-126db625-c53e-4591-9a22-c9ff422d6d58) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-normdist-function) _(guide)_

---

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