Table.Repeat
Table.Repeat(table as table, count as number) as table
Returnerar en tabell med raderna från indata table
upprepat de angivna count
gångerna.
Upprepa raderna i tabellen två gånger.
Användning
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"]
})