Table.DuplicateColumn
Syntax
Table.DuplicateColumn(table as table, columnName as text, newColumnName as text, optional columnType as nullable type) as table
Om
Duplicera kolumnen med namnet columnName
till tabellen table
. Värdena och typen för kolumnen newColumnName
kopieras från kolumnen columnName
.
Exempel
Duplicera kolumnen "a" till en kolumn med namnet "kopierad kolumn" i tabellen ({[a = 1, b = 2], [a = 3, b = 4]})
.
Användning
Table.DuplicateColumn(
Table.FromRecords({
[a = 1, b = 2],
[a = 3, b = 4]
}),
"a",
"copied column"
)
utdata
Table.FromRecords({
[a = 1, b = 2, #"copied column" = 1],
[a = 3, b = 4, #"copied column" = 3]
})