Table.Keys
Table.Keys(table as table) as list
指定したテーブルのキーを置き換えます。
テーブルのキーのリストを取得します。
使用方法
let
table = Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
}),
tableWithKeys = Table.AddKey(table, {"Id"}, true),
keys = Table.Keys(tableWithKeys)
in
keys
出力
{[Columns = {"Id"}, Primary = true]}