---
title: "COMBIN – หาจำนวนวิธีเลือก (C n,r)"
url: https://www.thepexcel.com/functions/excel/math-and-trigonometry/combin/
type: function-explainer
program: Excel
syntax: "=COMBIN(number, number_chosen)"
date: 2025-12-02
updated: 2025-12-17
scores:
  popularity: 5
  difficulty: 2
  usefulness: 6
---

# COMBIN – หาจำนวนวิธีเลือก (C n,r)

> หาจำนวนวิธีเลือก (C n,r)

## คำอธิบาย

คำนวณจำนวนวิธีจับคู่ (Combination) โดย 'ไม่สนใจลำดับ' (nCr) เช่น เลือกคน 2 คนจาก 5 คนได้กี่แบบ

## Syntax

```excel
=COMBIN(number, number_chosen)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| number | Yes | Number |  | จำนวนของทั้งหมด |
| number_chosen | Yes | Number |  | จำนวนที่เลือก |

## ตัวอย่าง

### 1. เลือกทีมงาน 2 คนจาก 5 คน

```excel
=COMBIN(5, 2)
```

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

คำนวณจำนวนวิธีจับคู่ที่ไม่สนใจลำดับ (nCr)

### 2. โอกาสถูกรางวัล (เลือก 6 จาก 49)

```excel
=COMBIN(49, 6)
```

**ผลลัพธ์:** `13,983,816`

จำนวนรูปแบบที่เป็นไปได้ทั้งหมดของการเลือกเลข 6 ตัว

### 3. จัดกลุ่มแข่งขัน

```excel
=COMBIN(8, 2)
```

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

8 ทีม แข่งแบบพบกันหมด (เลือก 2 ทีมมาเจอกัน) ได้ 28 แมตช์

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

- [COMBINA – คำนวณจำนวนวิธีเลือกสิ่งของแบบซ้ำได้](https://www.thepexcel.com/functions/excel/math-and-trigonometry/combina/)
- [FACT – คำนวณค่าแฟกทอเรียล](https://www.thepexcel.com/functions/excel/math-and-trigonometry/fact/)
- [PERMUT – หาจำนวนวิธีเรียงสับเปลี่ยน (P n,r)](https://www.thepexcel.com/functions/excel/statistical/permut/)
- [MULTINOMIAL – คำนวณค่าสัมประสิทธิ์พหุนาม](https://www.thepexcel.com/functions/excel/math-and-trigonometry/multinomial/)
- [PERMUTATIONA – หาจำนวนวิธีเรียงสับเปลี่ยนแบบซ้ำได้](https://www.thepexcel.com/functions/excel/statistical/permutationa/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/combin-function-12a3f276-0a21-423a-8de6-06990aaf638a) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-combin-function) _(guide)_

---

_Source: [https://www.thepexcel.com/functions/excel/math-and-trigonometry/combin/](https://www.thepexcel.com/functions/excel/math-and-trigonometry/combin/)_
