---
title: LOG10 – หาค่า Log ฐาน 10
url: https://www.thepexcel.com/functions/excel/math-and-trigonometry/log10/
type: function-explainer
program: Excel
syntax: =LOG10(number)
date: 2025-12-02
updated: 2025-12-17
scores:
  popularity: 6
  difficulty: 2
  usefulness: 5
---

# LOG10 – หาค่า Log ฐาน 10

> หาค่า Log ฐาน 10

## คำอธิบาย

ส่งกลับค่าลอการิทึมฐาน 10

## Syntax

```excel
=LOG10(number)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| number | Yes | Number |  | ค่าที่ต้องการหา (ต้อง > 0) |

## ตัวอย่าง

### 1. ตัวอย่างที่ 1: Log ฐาน 10 ของ 1000

```excel
=LOG10(1000)
```

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

คำนวณค่าลอการิทึมฐาน 10 ของ 1000 ซึ่งคือ 3 (เพราะ 10 ยกกำลัง 3 เท่ากับ 1000)

### 2. ตัวอย่างที่ 2: ระดับเสียง (Decibel)

```excel
=10 * LOG10(100 / 10)
```

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

สูตรคำนวณเดซิเบล (dB) ใช้ Log ฐาน 10
- สมมติ Intensity (ความเข้มเสียง) = 100, Reference = 10
- 10 * LOG10(100/10) = 10 * LOG10(10) = 10 * 1 = 20 dB

### 3. ตัวอย่างที่ 3: Log ฐาน 10 ของ 1

```excel
=LOG10(1)
```

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

ลอการิทึมของ 1 ฐานใดๆ จะเท่ากับ 0 เสมอ

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

- [DB – คิดค่าเสื่อม (Fixed-Declining Balance)](https://www.thepexcel.com/functions/excel/financial/db/)
- dummy
- [IMLOG10 – หา Log10 (Complex)](https://www.thepexcel.com/functions/excel/engineering/imlog10/)
- [LOG – คำนวณค่าลอการิทึม](https://www.thepexcel.com/functions/excel/math-and-trigonometry/log/)

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

- [Official Documentation](https://support.microsoft.com/en-us/office/log10-function-c75b881b-49dd-44fb-b6f4-37e3486a0211) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-log10-function) _(guide)_

---

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