Table.ReplaceKeys

Sintaxe

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

Sobre

Substitui as chaves da tabela especificada.

Exemplo

Substitua as chaves existentes de uma tabela.

Usage

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]}),
    newKeys = Table.Keys(resultTable)
in
    newKeys

Saída

{[Columns = {"Id"}, Primary = false]}