Koolitus
Moodul
Author a basic formula that uses tables and records in a Power Apps canvas app - Training
Learn how to author a basic formula that uses tables and records in a Power Apps canvas app.
Seda brauserit enam ei toetata.
Uusimate funktsioonide, turbevärskenduste ja tehnilise toe kasutamiseks võtke kasutusele Microsoft Edge.
Table.ExpandRecordColumn(table as table, column as text, fieldNames as list, optional newColumnNames as nullable list) as table
Given the column
of records in the input table
, creates a table with a column for each field in the record. Optionally, newColumnNames
may be specified to ensure unique names for the columns in the new table.
table
: The original table with the record column to expand.column
: The column to expand.fieldNames
: The list of fields to expand into columns in the table.newColumnNames
: The list of column names to give the new columns. The new column names cannot duplicate any column in the new table.Expand column [a] in the table ({[a = [aa = 1, bb = 2, cc = 3], b = 2]})
into 3 columns "aa", "bb" and "cc".
Usage
Table.ExpandRecordColumn(
Table.FromRecords({
[
a = [aa = 1, bb = 2, cc = 3],
b = 2
]
}),
"a",
{"aa", "bb", "cc"}
)
Output
Table.FromRecords({[aa = 1, bb = 2, cc = 3, b = 2]})
Koolitus
Moodul
Author a basic formula that uses tables and records in a Power Apps canvas app - Training
Learn how to author a basic formula that uses tables and records in a Power Apps canvas app.
Dokumentatsioon
Table.ExpandListColumn - PowerQuery M
เรียนรู้เพิ่มเติมเกี่ยวกับ: Table.ExpandListColumn
Table.ExpandTableColumn - PowerQuery M
เรียนรู้เพิ่มเติมเกี่ยวกับ: Table.ExpandTableColumn
Table.ColumnNames - PowerQuery M
เรียนรู้เพิ่มเติมเกี่ยวกับ: Table.ColumnNames