Table.Repeat
Table.Repeat(table as table, count as number) as table
Returnerer en tabel, hvor rækkerne fra inputtet table
gentages de angivne count
tidspunkter.
Gentag rækkerne i tabellen to gange.
Brug
Table.Repeat(
Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"]
}),
2
)
Output
Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"],
[a = 1, b = "hello"],
[a = 3, b = "world"]
})