Table.Repeat
Table.Repeat(table as table, count as number) as table
Restituisce una tabella con le righe dall'input table
ripetute per count
volte.
Ripetere le righe nella tabella due volte.
Utilizzo
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"]
})