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

# WEIBULL – หาค่า Weibull (เก่า)

> ฟังก์ชัน WEIBULL ใน Excel ใช้สำหรับคำนวณค่าความน่าจะเป็นของการแจกแจงแบบ Weibull (Weibull Distributio

## คำอธิบาย

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

## Syntax

```excel
=WEIBULL(x, alpha, beta, cumulative)
```

## Arguments

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

## ตัวอย่าง

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

```excel
=WEIBULL(105, 20, 100, TRUE)
```

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

แทนด้วย WEIBULL.DIST

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

```excel
=WEIBULL(105, 20, 150, TRUE)
```

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

Similar to previous example but with different input values. Formula: =WEIBULL(105, 20, 150, TRUE) returns 0.000797604.

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

```excel
=WEIBULL(105, 20, 300, FALSE)
```

**ผลลัพธ์:** `1.44944e-10`

Similar to previous example but with different input values. Formula: =WEIBULL(105, 20, 300, FALSE) returns 1.44944e-10.

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

- [EXPON.DIST – คำนวณการแจกแจงแบบ Exponential](https://www.thepexcel.com/functions/excel/statistical/expon-dist/)
- [LOGNORM.DIST – หาค่าการแจกแจงแบบ Lognormal](https://www.thepexcel.com/functions/excel/statistical/lognorm-dist/)
- [NORM.DIST – คำนวณค่าการแจกแจงปกติ](https://www.thepexcel.com/functions/excel/statistical/norm-dist/)
- [WEIBULL.DIST – คำนวณการแจกแจงแบบ Weibull](https://www.thepexcel.com/functions/excel/statistical/weibull-dist/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/weibull-function-b83dc2c6-260b-4754-bef2-633196f6fdcc) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-weibull-function) _(guide)_

---

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