Table.AddKey
Table.AddKey(table as table, columns as list, isPrimary as logical) as table
Dodaje klucz do table
elementu , gdzie columns
jest listą nazw kolumn, które definiują klucz, i isPrimary
określa, czy klucz jest podstawowy.
Dodaj do tabeli klucz podstawowy z jedną kolumną.
Użycie
let
table = Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
}),
resultTable = Table.AddKey(table, {"Id"}, true)
in
resultTable
Wyjście
Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
})