Syntax
Table.FindText(table as table, text as text) as table
About
返回表中 table 包含文本 text的行。 如果未找到文本,则返回一个空表。
示例 1
查找表中包含“Bob”的行。
用法
Table.FindText(
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"]
}),
"Bob"
)
输出
Table.FromRecords({[CustomerID = 1, Name = "Bob", Phone = "123-4567"]})