แชร์ผ่าน


Table.FillUp

วากยสัมพันธ์

Table.FillUp(table as table, columns as list) as table

ประมาณ

แสดงตารางจาก table ที่ระบุซึ่งมีการเผยแพร่ค่าของเซลล์ถัดไปไปยังเซลล์ที่มีค่า null ด้านบนใน columns ที่ระบุ

ตัวอย่างที่ 1

แสดงตารางที่มีค่า null ในคอลัมน์ [Column2] ที่มีค่าต่ํากว่าจากตาราง

การใช้งาน

Table.FillUp(
    Table.FromRecords({
        [Column1 = 1, Column2 = 2],
        [Column1 = 3, Column2 = null],
        [Column1 = 5, Column2 = 3]
    }),
    {"Column2"}
)

ผลลัพธ์ของ

Table.FromRecords({
    [Column1 = 1, Column2 = 2],
    [Column1 = 3, Column2 = 3],
    [Column1 = 5, Column2 = 3]
})