Table.DemoteHeaders
構文
Table.DemoteHeaders(table as table) as table
バージョン情報
列ヘッダー (つまり、列名) を値の先頭行に降格させます。 既定の列名は、"Column1"、"Column2" などです。
例 1
テーブルの値の先頭行を降格させます。
使用方法
Table.DemoteHeaders(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"]
})
)
出力
Table.FromRecords({
[Column1 = "CustomerID", Column2 = "Name", Column3 = "Phone"],
[Column1 = 1, Column2 = "Bob", Column3 = "123-4567"],
[Column1 = 2, Column2 = "Jim", Column3 = "987-6543"]
})