Table.RemoveColumns
Table.RemoveColumns(table as table, columns as any, optional missingField as nullable number) as table
Poistaa määritetyn columns
kohteen annetusta kohteesta table
. Jos määritettyä saraketta ei ole, esiin tulee virhe, ellei valinnainen parametri missingField
määritä vaihtoehtoista toimintaa (esimerkiksi MissingField.UseNull tai MissingField.Ignore).
Poista sarake [Puhelin] taulukosta.
Käyttö
Table.RemoveColumns(
Table.FromRecords({[CustomerID = 1, Name = "Bob", Phone = "123-4567"]}),
"Phone"
)
Tuloste
Table.FromRecords({[CustomerID = 1, Name = "Bob"]})
Yritä poistaa sarakkeet, joita ei ole olemassa taulukosta.
Käyttö
Table.RemoveColumns(
Table.FromRecords({[CustomerID = 1, Name = "Bob", Phone = "123-4567"]}),
"Address"
)
Tuloste
[Expression.Error] The column 'Address' of the table wasn't found.