---
title: DEGREES – แปลงเรเดียนเป็นองศา
url: https://www.thepexcel.com/functions/excel/math-and-trigonometry/degrees/
type: function-explainer
program: Excel
syntax: =DEGREES(angle)
date: 2025-12-02
updated: 2025-12-17
scores:
  popularity: 5
  difficulty: 2
  usefulness: 6
---

# DEGREES – แปลงเรเดียนเป็นองศา

> แปลงเรเดียนเป็นองศา

## คำอธิบาย

แปลงมุมจากเรเดียนเป็นองศา

## Syntax

```excel
=DEGREES(angle)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| angle | Yes | Number |  | มุมในหน่วยเรเดียน |

## ตัวอย่าง

### 1. แปลง Pi เป็นองศา

```excel
=DEGREES(PI(, 1)
```

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

มุม Pi เรเดียน เท่ากับ 180 องศา

### 2. แปลงผลจาก ASIN

```excel
=DEGREES(ASIN(0.5))
```

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

ASIN(0.5) ได้ 0.523... เรเดียน แปลงเป็น 30 องศา

### 3. แปลง Pi เป็นองศา (with different value)

```excel
=DEGREES(PI())
```

**ผลลัพธ์:** `Check formula`

Similar to previous example but with different input values. Formula: =DEGREES(PI()) returns Check formula.

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

- [ACOS – หาค่ามุมจากค่า Cosine](https://www.thepexcel.com/functions/excel/math-and-trigonometry/acos/)
- [ACOT – หาค่า Arccotangent](https://www.thepexcel.com/functions/excel/math-and-trigonometry/acot/)
- [ASIN – หาค่า Arcsine (มุมจากค่า Sine)](https://www.thepexcel.com/functions/excel/math-and-trigonometry/asin/)
- [ATAN2 – หาค่ามุมจากพิกัด x, y](https://www.thepexcel.com/functions/excel/math-and-trigonometry/atan2/)
- [PI – ค่าพาย (Pi)](https://www.thepexcel.com/functions/excel/math-and-trigonometry/pi/)
- [SIN – หาค่า Sine](https://www.thepexcel.com/functions/excel/math-and-trigonometry/sin/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/degrees-function-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-degrees-function) _(guide)_

---

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