共用方式為


Table.FindText

語法

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

關於

傳回資料表 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"]})