Číst v angličtině

Sdílet prostřednictvím


Table.ReplaceKeys

Syntaxe

Table.ReplaceKeys(table as table, keys as list) as table

O uživateli

Nahradí klíče zadané tabulky.

Příklad 1

Nahraďte existující klíče tabulky.

Využití

let
    table = Table.FromRecords({
        [Id = 1, Name = "Hello There"],
        [Id = 2, Name = "Good Bye"]
    }),
    tableWithKeys = Table.AddKey(table, {"Id"}, true),
    resultTable = Table.ReplaceKeys(tableWithKeys, {[Columns = {"Id"}, Primary = false]})
in
    resultTable

Výstup

Table.FromRecords({
    [Id = 1, Name = "Hello There"],
    [Id = 2, Name = "Good Bye"]
})