Table.Repeat
Table.Repeat(table as table, count as number) as table
ส่งกลับตารางที่มีแถวจากค่าที่ป้อนที่table
ทําซ้ําเป็นจํานวนครั้งตามที่ระบุcount
ทําซ้ําแถวในตารางสองครั้ง
การใช้งาน
Table.Repeat(
Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"]
}),
2
)
เอาท์พุท
Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"],
[a = 1, b = "hello"],
[a = 3, b = "world"]
})