Table.Repeat
Syntaks
Table.Repeat(table as table, count as number) as table
Omtrent
Returnerer en tabel, hvor rækkerne fra inputtet table
gentaget de angivne count
gange.
Eksempel 1
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"]
})