Table.Repeat
Table.Repeat(table as table, count as number) as table
Returnerer en tabell med radene fra inndata table
gjentatt de angitte count
tidspunktene.
Gjenta radene i tabellen to ganger.
bruk
Table.Repeat(
Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"]
}),
2
)
utdata
Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"],
[a = 1, b = "hello"],
[a = 3, b = "world"]
})