メインコンテンツまでスキップ

Table.ColumnsOfType

指定の型と一致する列の名前リストを返します。

Syntax

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

Remarks

listOfTypes で指定された型と一致する列の名前をテーブル table から取得してリストとして返します。

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