---
title: List.Single – คืนค่าสมาชิกเดี่ยว
url: https://www.thepexcel.com/functions/power-query/list-functions/list-single/
type: function-explainer
program: Power Query
syntax: List.Single(list as list) as any
date: 2025-12-03
updated: 2025-12-17
scores:
  popularity: 5
  difficulty: 4
  usefulness: 5
---

# List.Single – คืนค่าสมาชิกเดี่ยว

> คืนค่าสมาชิกเดี่ยว

## คำอธิบาย

คืนค่าสมาชิกตัวเดียวใน List (ถ้ามีมากกว่า 1 จะ Error)

## Syntax

```excel
List.Single(list as list) as any
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| list | Yes | list |  | List ที่มีสมาชิก 1 ตัว |

## ตัวอย่าง

### 1. Single

```excel
List.Single({10})
```

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

ดึงค่าออกมา

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

- [List.First – ดึงสมาชิกตัวแรกจาก List](https://www.thepexcel.com/functions/power-query/list-functions/list-first/)
- [List.Last – คืนค่าสมาชิกตัวสุดท้ายของ List](https://www.thepexcel.com/functions/power-query/list-functions/list-last/)

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

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

---

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