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

# LOGNORMDIST – หาค่า Lognormal Distribution (เก่า)

> คำนวณค่าความน่าจะเป็นสะสมของตัวแปรสุ่มที่แจกแจงแบบ Lognormal ที่ค่าที่ระบุ โดยใช้ค่าเฉลี่ยและส่วนเบี

## คำอธิบาย

คำนวณค่าความน่าจะเป็นสะสมของตัวแปรสุ่มที่แจกแจงแบบ Lognormal ที่ค่าที่ระบุ โดยใช้ค่าเฉลี่ยและส่วนเบี่ยงเบนมาตรฐานของลอการิทึมของการแจกแจง ฟังก์ชันนี้เป็นเวอร์ชันเก่าและอาจถูกแทนที่ด้วย LOGNORM.DIST.

## Syntax

```excel
=LOGNORMDIST(x, mean, standard_dev)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| x | Yes | Number |  | ค่าที่คุณต้องการประเมินการแจกแจง |
| mean | Yes | Number |  | ค่าเฉลี่ยของ ln(x) ของการแจกแจง |
| standard_dev | Yes | Number |  | ค่าส่วนเบี่ยงเบนมาตรฐานของ ln(x) ของการแจกแจง |

## ตัวอย่าง

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

```excel
=LOGNORMDIST(4, 3.5, 1.2)
```

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

แทนด้วย LOGNORM.DIST

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

```excel
=LOGNORMDIST(4, 3.5, 1)
```

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

Similar to previous example but with different input values. Formula: =LOGNORMDIST(4, 3.5, 1) returns 0.0172702.

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

```excel
=LOGNORMDIST(4, 3.5, 3)
```

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

Similar to previous example but with different input values. Formula: =LOGNORMDIST(4, 3.5, 3) returns 0.240539.

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

- [LOGNORM.DIST – หาค่าการแจกแจงแบบ Lognormal](https://www.thepexcel.com/functions/excel/statistical/lognorm-dist/)
- [LOGNORM.INV – หาค่าผกผันของการแจกแจง Lognormal](https://www.thepexcel.com/functions/excel/statistical/lognorm-inv/)
- [NORM.DIST – คำนวณค่าการแจกแจงปกติ](https://www.thepexcel.com/functions/excel/statistical/norm-dist/)
- [NORM.INV – หาค่าผกผันของการแจกแจงปกติ](https://www.thepexcel.com/functions/excel/statistical/norm-inv/)
- [NORMDIST – หาค่า Normal Distribution (เก่า)](https://www.thepexcel.com/functions/excel/compatibility/normdist/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/lognormdist-function-f8d194cb-9ee3-4034-8c75-1bdb3884100b) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-lognormdist-function) _(guide)_

---

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