Table.Repeat
構文
Table.Repeat(table as table, count as number) as table
バージョン情報
count
回繰り返された行を含むテーブルを、入力 table
から返します。
例 1
テーブルの行を 2 回繰り返します。
使用方法
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"]
})