Čítať v angličtine

Zdieľať cez


Table.FillUp

Syntax

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

Informácie

Vráti tabuľku zo table zadanej časti , kde sa hodnota nasledujúcej bunky rozšíri do buniek s hodnotou null vyššie v zadanom stĺpci columns .

Príklad č. 1

Vráťte tabuľku s hodnotami null v stĺpci [Column2] vyplnenú hodnotou pod nimi z tabuľky.

Použitie

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

Výkon

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