Skip to main content

Table.Repeat

ทำซ้ำแถวของตารางตามจำนวนครั้งที่ระบุ

Syntax

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

Remarks

ส่งกลับตารางที่มีแถวจากค่าที่ป้อน table ที่ทำซ้ำเป็นจำนวน count ครั้งตามที่ระบุ

Examples

Example #1

ซ้ำแถวในตารางสองครั้ง

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