---
title: List.Combine – รวม List
url: https://www.thepexcel.com/functions/power-query/list-functions/list-combine/
type: function-explainer
program: Power Query
syntax: List.Combine(lists as list) as list
date: 2025-12-03
updated: 2025-12-17
scores:
  popularity: 5
  difficulty: 3
  usefulness: 5
---

# List.Combine – รวม List

> รวม List

## คำอธิบาย

รวมหลาย List เข้าด้วยกันเป็น List เดียว (Concatenate)

## Syntax

```excel
List.Combine(lists as list) as list
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| lists | Yes | list |  | List ของ List ที่จะรวม |

## ตัวอย่าง

### 1. รวม List

```excel
List.Combine({{1, 2}, {3, 4}})
```

**ผลลัพธ์:** `{1, 2, 3, 4}`

ต่อ List เข้าด้วยกัน

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

- [Binary.Combine – รวม Binary หลายตัวเป็นตัวเดียว](https://www.thepexcel.com/functions/power-query/binary-functions/binary-combine/)
- [List.InsertRange – แทรก List ลงในตำแหน่งที่ระบุ](https://www.thepexcel.com/functions/power-query/list-functions/list-insertrange/)
- [List.Union – ยูเนียน List](https://www.thepexcel.com/functions/power-query/list-functions/list-union/)
- [List.Zip – รวม List หลายชุดเข้าด้วยกัน](https://www.thepexcel.com/functions/power-query/list-functions/list-zip/)
- [Record.Combine – รวมหลาย Record เป็นหนึ่งเดียว](https://www.thepexcel.com/functions/power-query/record-functions/record-combine/)

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

- [PowerQuery.how](https://powerquery.how/list-combine/) _(guide)_

---

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