Table.ReplaceRows
Table.ReplaceRows(table as table, offset as number, count as number, rows as list) as table
แทนที่จํานวนแถวcount
ที่ระบุ ในอินพุต table
ด้วย ที่ระบุ rows
โดยเริ่มต้นหลังจากoffset
พารามิเตอร์ rows
คือรายการของเรกคอร์ด
table
: ตารางที่มีการดําเนินการแทนที่offset
: จํานวนแถวที่จะข้ามก่อนทําการแทนที่count
: จํานวนแถวที่จะแทนที่rows
: รายการของเรกคอร์ดแถวที่จะแทรกลงในtable
ที่ตําแหน่งที่ตั้งที่ระบุโดยoffset
เริ่มต้นที่ตําแหน่ง 1 แทนที่ 3 แถว
การใช้งาน
Table.ReplaceRows(
Table.FromRecords({
[Column1 = 1],
[Column1 = 2],
[Column1 = 3],
[Column1 = 4],
[Column1 = 5]
}),
1,
3,
{[Column1 = 6], [Column1 = 7]}
)
เอาท์พุท
Table.FromRecords({
[Column1 = 1],
[Column1 = 6],
[Column1 = 7],
[Column1 = 5]
})