閱讀英文

共用方式為


Table.SplitAt

Table.SplitAt(table as table, count as number) as list

關於

傳回包含兩個數據表的清單:具有前 N 個數據列的 table 資料表 (如 count 所指定),以及包含 table 其餘資料列的資料表。 如果結果清單的資料表只列舉一次且依序列舉,則函式只會列舉 table 一次。

範例 1

傳回資料表的前兩列,以及資料表的其餘資料列。

使用方式

Table.SplitAt(#table({"a", "b", "c"}, {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}), 2)

輸出

{
    #table({"a", "b", "c"}, {{1, 2, 3}, {4, 5, 6}}),
    #table({"a", "b", "c"}, {{7, 8, 9}})
}