Table.RemoveColumns
Loại bỏ các cột được chỉ định.
Syntax
Table.RemoveColumns(
table as table,
columns as any,
optional missingField as MissingField.Type
) as table
Remarks
Loại bỏ columns
đã chỉ định từ table
được cung cấp. Nếu cột đã chỉ định không tồn tại thì sẽ xảy ra lỗi trừ khi tham số tùy chọn missingField
chỉ định hành vi thay thế (ví dụ như MissingField.UseNull
hoặc MissingField.Ignore
).
Examples
Example #1
Loại bỏ cột [Phone] khỏi bảng.
Table.RemoveColumns(
Table.FromRecords({[CustomerID = 1, Name = "Bob", Phone = "123-4567"]}),
"Phone"
)
Result:
Table.FromRecords({[CustomerID = 1, Name = "Bob"]})
Example #2
Cố gắng loại bỏ cột không tồn tại khỏi bảng.
Table.RemoveColumns(
Table.FromRecords({[CustomerID = 1, Name = "Bob", Phone = "123-4567"]}),
"Address"
)
Result:
[Expression.Error] The column 'Address' of the table wasn't found.
Category
Table.Column operations