---
title: Number.Log10 – คำนวณลอการิทึมฐาน 10
url: https://www.thepexcel.com/functions/power-query/number-functions/number-log10/
type: function-explainer
program: Power Query
syntax: Number.Log10(number as number) as number
date: 2025-12-12
updated: 2025-12-17
scores:
  popularity: 5
  difficulty: 3
  usefulness: 5
---

# Number.Log10 – คำนวณลอการิทึมฐาน 10

> คำนวณลอการิทึมฐาน 10

## คำอธิบาย

Number.Log10 คำนวณลอการิทึมฐาน 10 ของตัวเลข มีประโยชน์ในการวัดสเกลลอการิทึม เช่นสเกล pH และสเกล Richter

## Syntax

```excel
Number.Log10(number as number) as number
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| number | Yes | number |  | ตัวเลขที่ต้องการคำนวณลอการิทึมฐาน 10 |

## ตัวอย่าง

### 1. ตัวอย่างที่ 1: Log10 ของ 100

```excel
Number.Log10(100)
```

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

Log10 ของ 100 คือ 2 (เพราะ 10^2 = 100)

### 2. ตัวอย่างที่ 2: Log10 ของ 1000

```excel
Number.Log10(1000)
```

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

Log10 ของ 1000 คือ 3

### 3. ตัวอย่างที่ 3: Log10 ของ 50

```excel
Number.Log10(50)
```

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

Log10 ของ 50 คือประมาณ 1.699

## คำถามที่พบบ่อย

**Q: ลอการิทึมฐาน 10 ใช้สำหรับอะไร**

ใช้สำหรับวัดสเกล Richter (แผ่นดินไหว) pH น้ำ ความเข้มเสียง

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

- [Number.Log – คำนวณลอการิทึมธรรมชาติ](https://www.thepexcel.com/functions/power-query/number-functions/number-log/)
- [Number.Exp – คำนวณ e ยกกำลัง](https://www.thepexcel.com/functions/power-query/number-functions/number-exp/)
- [Number.Power – เลขยกกำลัง](https://www.thepexcel.com/functions/power-query/number-functions/number-power/)

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

- [Microsoft Learn: Number.Log10](https://learn.microsoft.com/en-us/powerquery-m/number-log10) _(documentation)_

---

_Source: [https://www.thepexcel.com/functions/power-query/number-functions/number-log10/](https://www.thepexcel.com/functions/power-query/number-functions/number-log10/)_
