Číst v angličtině

Sdílet prostřednictvím


Table.AddColumn

Syntaxe

Table.AddColumn(table as table, newColumnName as text, columnGenerator as function, optional columnType as nullable type) as table

O uživateli

Přidá sloupec pojmenovaný newColumnName do tabulky table. Hodnoty pro sloupec se počítají pomocí zadané funkce columnGenerator výběru s každým řádkem pořízeným jako vstup.

Příklad 1

Přidejte do tabulky číselný sloupec s názvem TotalPrice, přičemž každá hodnota je součtem sloupců [Price] a [Shipping].

Využití

Table.AddColumn(
    Table.FromRecords({
        [OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0, Shipping = 10.00],
        [OrderID = 2, CustomerID = 1, Item = "1 lb. worms", Price = 5.0, Shipping = 15.00],
        [OrderID = 3, CustomerID = 2, Item = "Fishing net", Price = 25.0, Shipping = 10.00]
    }),
    "TotalPrice",
    each [Price] + [Shipping],
    type number
)

Výstup

Table.FromRecords({
    [OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100, Shipping = 10, TotalPrice = 110],
    [OrderID = 2, CustomerID = 1, Item = "1 lb. worms", Price = 5, Shipping = 15, TotalPrice = 20],
    [OrderID = 3, CustomerID = 2, Item = "Fishing net", Price = 25, Shipping = 10, TotalPrice = 35]
})