共用方式為


Table.ColumnsOfType

語法

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

關於

傳回符合 listOfTypes 中指定類型的資料表 table 中資料行名稱清單。

範例 1

傳回資料表中 Number.Type 類型的資料行名稱。

使用方式

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

輸出

{"a"}