---
title: QUOTIENT – หารเอาส่วน (ไม่เอาเศษ)
url: https://www.thepexcel.com/functions/excel/math-and-trigonometry/quotient/
type: function-explainer
program: Excel
syntax: "=QUOTIENT(numerator, denominator)"
date: 2025-12-02
updated: 2026-05-31
scores:
  popularity: 6
  difficulty: 2
  usefulness: 5
---

# QUOTIENT – หารเอาส่วน (ไม่เอาเศษ)

> ส่งกลับผลลัพธ์การหารแบบจำนวนเต็ม (ตัดเศษทิ้ง)

## คำอธิบาย

ส่งกลับผลลัพธ์การหารแบบจำนวนเต็ม (ตัดเศษทิ้ง)

## Syntax

```excel
=QUOTIENT(numerator, denominator)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| numerator | Yes | Number |  | ตัวตั้ง |
| denominator | Yes | Number |  | ตัวหาร |

## ตัวอย่าง

### 1. หารเอาจำนวนเต็ม

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

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

5 หาร 2 ได้ 2.5 ตัดเศษทิ้งเหลือ 2

### 2. หารติดลบ

```excel
=QUOTIENT(-10, 3)
```

**ผลลัพธ์:** `-3`

-10/3 = -3.33 ตัดเศษทิ้งเหลือ -3 (ปัดเข้าหาศูนย์)

### 3. หารเอาจำนวนเต็ม (with different value)

```excel
=QUOTIENT(5, 3)
```

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

Similar to previous example but with different input values. Formula: =QUOTIENT(5, 3) returns 1.

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

- [GCD – หา ห.ร.ม.](https://www.thepexcel.com/functions/excel/math-and-trigonometry/gcd/)
- [LCM – หา ค.ร.น.](https://www.thepexcel.com/functions/excel/math-and-trigonometry/lcm/)
- [MOD – หาเศษเหลือจากการหาร](https://www.thepexcel.com/functions/excel/math-and-trigonometry/mod/)
- [PRODUCT – หาผลคูณของตัวเลข](https://www.thepexcel.com/functions/excel/math-and-trigonometry/product/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/quotient-function-9f7bf099-2a18-4282-8fa4-65290cc99dee) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-quotient-function) _(guide)_

---

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