Ga naar hoofdinhoud

Table.Repeat

Herhaalt de rijen van de tabel het opgeven aantal malen.

Syntax

Table.Repeat(
table as table,
count as number
) as table

Remarks

Retourneert een tabel met de rijen vanuit de invoer table de opgegeven count keer.

Examples

Example #1

De rijen in de tabel twee keer herhalen.

Table.Repeat(
Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"]
}),
2
)

Result:

Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"],
[a = 1, b = "hello"],
[a = 3, b = "world"]
})

Category

Table.Row operations