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

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

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

## คำอธิบาย

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

## Syntax

```excel
=RADIANS(angle)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| angle | Yes | Number |  | มุมในหน่วยองศา |

## ตัวอย่าง

### 1. แปลง 180 องศา

```excel
=RADIANS(180)
```

**ผลลัพธ์:** `3.14... (Pi)`

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

### 2. ใช้กับ Sin

```excel
=SIN(RADIANS(30))
```

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

Sin ใน Excel รับค่าเป็นเรเดียน จึงต้องแปลงก่อน

### 3. แปลง 180 องศา (with different value)

```excel
=RADIANS(90)
```

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

Similar to previous example but with different input values. Formula: =RADIANS(90) returns 1.570795000.

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

- [COT – หาค่า Cotangent ของมุม](https://www.thepexcel.com/functions/excel/math-and-trigonometry/cot/)
- [CSC – หาค่า Cosecant ของมุม](https://www.thepexcel.com/functions/excel/math-and-trigonometry/csc/)
- [PI – ค่าพาย (Pi)](https://www.thepexcel.com/functions/excel/math-and-trigonometry/pi/)
- [SEC – หาค่า Secant](https://www.thepexcel.com/functions/excel/math-and-trigonometry/sec/)
- [SIN – หาค่า Sine](https://www.thepexcel.com/functions/excel/math-and-trigonometry/sin/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/radians-function-ac409508-3d48-45f5-ac02-1497c92de5bf) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-radians-function) _(guide)_

---

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