Skip to main content

Table.ColumnsOfType

ส่งกลับรายการพร้อมชื่อของคอลัมน์ซึ่งตรงกันกับชนิดที่ระบุไว้

Syntax

Table.ColumnsOfType(
table as table,
listOfTypes as list
) as list

Remarks

ส่งกลับรายการพร้อมชื่อของคอลัมน์จากตาราง table ซึ่งตรงกันกับชนิดที่ระบุไว้ใน listOfTypes

Examples

Example #1

ส่งคืนชื่อคอลัมน์สำหรับชนิด Number.Type จากตาราง

Table.ColumnsOfType(
Table.FromRecords(
{[a = 1, b = "hello"]},
type table[a = Number.Type, b = Text.Type]
),
{type number}
)

Result:

{"a"}

Category

Table.Column operations