Table.HasColumns
Tiek norādīts, vai tabulā ir ietverta(-s) norādītā(-s) kolonna(-s).
Syntax
Table.HasColumns(
table as table,
columns as any
) as logical
Remarks
Tiek norādīts, vai table ietver norādīto(-ās) kolonnu(-as) columns. Tiek atgriezta vērtība true, ja tabul ā ir ietverta(-s) kolonna(-s); pretējā gadījumā tiek atgriezta vērtība false.
Examples
Example #1
Nosakiet, vai tabulā ir kolonna [Name].
Table.HasColumns(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 4, Name = "Ringo", Phone = "232-1550"]
}),
"Name"
)
Result:
true
Example #2
Uzziniet, vai tabulā ir kolonna [Name] un [PhoneNumber].
Table.HasColumns(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 4, Name = "Ringo", Phone = "232-1550"]
}),
{"Name", "PhoneNumber"}
)
Result:
false
Category
Table.Column operations