---
title: NORMSINV – หาค่า Inverse Standard Normal (เก่า)
url: https://www.thepexcel.com/functions/excel/compatibility/normsinv/
type: function-explainer
program: Excel
syntax: =NORMSINV(probability)
date: 2025-12-02
updated: 2025-12-17
scores:
  popularity: 2
  difficulty: 3
  usefulness: 2
---

# NORMSINV – หาค่า Inverse Standard Normal (เก่า)

> หาค่า z-score จากความน่าจะเป็นสะสมของ Normal มาตรฐาน (ชื่อเก่า)

## คำอธิบาย

NORMSINV เป็นฟังก์ชันชื่อเก่า (legacy) สำหรับหาค่าผกผันของการแจกแจงปกติมาตรฐาน (Standard Normal) โดยรับค่า probability แล้วคืนค่า z-score ที่ทำให้ความน่าจะเป็นสะสมเท่ากับค่านั้น ปัจจุบันแนะนำให้ใช้ NORM.S.INV แทน

## Syntax

```excel
=NORMSINV(probability)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| probability | Yes | Number |  | ความน่าจะเป็น |

## ตัวอย่าง

### 1. ตัวอย่างที่ 1: ค่ากลางของการแจกแจง (0.5)

```excel
=NORMSINV(0.5)
```

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

เมื่อ probability = 0.5 จะได้ z-score = 0 ซึ่งเป็นค่ากลางของการแจกแจงปกติมาตรฐาน

### 2. ตัวอย่างที่ 2: ค่าประมาณ z-score ที่ 97.5%

```excel
=NORMSINV(0.975)
```

**ผลลัพธ์:** `≈ 1.96`

probability 0.975 มักใช้ในสถิติ (ช่วงความเชื่อมั่น 95%) จะได้ z-score ประมาณ 1.96

### 3. ตัวอย่างที่ 3: ใช้ฟังก์ชันใหม่ NORM.S.INV แทน

```excel
=NORM.S.INV(0.975)
```

**ผลลัพธ์:** `≈ 1.96`

NORMSINV เป็นชื่อเก่า ปัจจุบันควรใช้ NORM.S.INV ซึ่งให้ผลลัพธ์เทียบเท่ากัน แต่เป็นชื่อที่รองรับในเวอร์ชันใหม่

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

- [NORM.S.INV – หาค่า Z-Score จากความน่าจะเป็น](https://www.thepexcel.com/functions/excel/statistical/norm-s-inv/)
- [NORM.S.DIST – หาค่า Standard Normal Distribution](https://www.thepexcel.com/functions/excel/statistical/norm-s-dist/)
- [NORMINV – ค้นหาค่าผกผันของการแจกแจงปกติ](https://www.thepexcel.com/functions/excel/statistical/norminv/)

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

- [เอกสาร Microsoft Support: NORMSINV](https://support.microsoft.com/en-us/office/normsinv-function-8d1bce66-8e4d-4f3b-967c-30eed61f019d) _(official)_
- [คำอธิบายและตัวอย่างเพิ่มเติม: NORMSINV (ExcelJet)](https://exceljet.net/excel-functions/excel-normsinv-function) _(guide)_

---

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