---
title: List.Intersect – อินเตอร์เซกต์ List
url: https://www.thepexcel.com/functions/power-query/list-functions/list-intersect/
type: function-explainer
program: Power Query
syntax: "List.Intersect(lists as list, optional equationCriteria as any) as list"
date: 2025-12-03
updated: 2025-12-17
scores:
  popularity: 5
  difficulty: 3
  usefulness: 5
---

# List.Intersect – อินเตอร์เซกต์ List

> อินเตอร์เซกต์ List

## คำอธิบาย

หาสมาชิกที่มีอยู่ร่วมกันในทุก List (Set Intersection)

## Syntax

```excel
List.Intersect(lists as list, optional equationCriteria as any) as list
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| lists | Yes | list |  | List ของ List |

## ตัวอย่าง

### 1. Intersect

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

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

เอาเฉพาะตัวที่มีทั้งคู่

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

- [List.Union – ยูเนียน List](https://www.thepexcel.com/functions/power-query/list-functions/list-union/)
- [List.Difference – หาผลต่าง List](https://www.thepexcel.com/functions/power-query/list-functions/list-difference/)

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

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

---

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