Table.Repeat
テーブルの行を指定回数だけ繰り返します。
Syntax
Table.Repeat(
table as table,
count as number
) as table
Remarks
count
回繰り返された行を含むテーブルを、入力 table
から返します。
Examples
Example #1
テーブルの行を 2 回繰り返します。
Table.Repeat(
Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"]
}),
2
)
Result:
Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"],
[a = 1, b = "hello"],
[a = 3, b = "world"]
})
Category
Table.Row operations