---
title: Text.Repeat – ทำซ้ำข้อความ
url: https://www.thepexcel.com/functions/power-query/text-functions/text-repeat/
type: function-explainer
program: Power Query
syntax: "Text.Repeat(text as nullable text, count as number) as nullable text"
date: 2025-12-03
updated: 2025-12-17
scores:
  popularity: 4
  difficulty: 2
  usefulness: 4
---

# Text.Repeat – ทำซ้ำข้อความ

> ทำซ้ำข้อความ

## คำอธิบาย

ทำซ้ำข้อความตามจำนวนครั้งที่ระบุ

## Syntax

```excel
Text.Repeat(text as nullable text, count as number) as nullable text
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| text | Yes | text |  | ข้อความที่ต้องการทำซ้ำ |
| count | Yes | number |  | จำนวนครั้ง |

## ตัวอย่าง

### 1. ทำซ้ำ 3 ครั้ง

```excel
Text.Repeat("Ho", 3)
```

**ผลลัพธ์:** `"HoHoHo"`

ทำซ้ำคำว่า Ho 3 ครั้ง

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

- [List.Repeat – ทำซ้ำ List หลายครั้ง](https://www.thepexcel.com/functions/power-query/list-functions/list-repeat/)
- [Text.PadStart – เติมอักขระด้านหน้า](https://www.thepexcel.com/functions/power-query/text-functions/text-padstart/)

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

- [PowerQuery.how](https://powerquery.how/text-repeat/) _(guide)_

---

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