メインコンテンツまでスキップ

Table.ReplaceKeys

指定されたテーブルのキーを置き換えます。

Syntax

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

Remarks

指定されたテーブルのキーを置き換えます。

Examples

Example #1

テーブルの既存のキーを置き換えます。

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

Result:

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

Category

Table.Transformation