共用方式為


Table.Repeat

語法

Table.Repeat(table as table, count as number) as table  

關於

傳回資料表,其中資料列來自輸入 table 會重複指定的 count 次。

範例 1

將資料表中的資料列重複兩次。

使用方式

Table.Repeat(
    Table.FromRecords({
        [a = 1, b = "hello"],
        [a = 3, b = "world"]
    }),
    2
)

輸出

Table.FromRecords({
    [a = 1, b = "hello"],
    [a = 3, b = "world"],
    [a = 1, b = "hello"],
    [a = 3, b = "world"]
})