Table.SelectRows
选择满足条件函数的行。
Syntax
Table.SelectRows(
table as table,
condition as function
) as table
Remarks
从 table 返回与选择 condition 匹配的行的表。
Examples
Example #1
选择表中的行,其中 [CustomerID] 列中的值大于 2。
Table.SelectRows(
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"]
}),
each [CustomerID] > 2
)
Result:
Table.FromRecords({
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 4, Name = "Ringo", Phone = "232-1550"]
})