Table.ReplaceRows
Table.ReplaceRows(table as table, offset as number, count as number, rows as list) as table
以所指定 rows
取代輸入 table
中指定數目的資料列 count
,從 offset
之後開始。 rows
參數是記錄的清單。
table
: 執行取代的資料表。offset
: 要在進行取代之前略過的資料列數目。count
: 要取代的資料列數目。rows
: 要在offset
所指定位置插入table
中的資料列記錄清單。
從位置 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]
})