Table.Repeat
Table.Repeat(table as table, count as number) as table
Retourneert een tabel waarin de rijen uit de invoer table
de opgegeven count
keer worden herhaald.
Herhaal de rijen in de tabel twee keer.
Gebruik
Table.Repeat(
Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"]
}),
2
)
uitvoer
Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"],
[a = 1, b = "hello"],
[a = 3, b = "world"]
})