Table.FindText

Table.FindText (table as table, text as text) as table

返回表 table 中包含文本 text 的行。如果找不到文本,则返回空表。

示例:

查找表中包含 "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"]})

results matching ""

    No results matching ""