Saltar al contenido principal

Table.FindText

Devuelve todas las filas que contienen el texto indicado en la tabla.

Syntax

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

Remarks

Devuelve las filas de la tabla table que contienen el texto text. Si no se encuentra el texto, se devuelve una tabla vacía.

Examples

Example #1

Buscar filas de la tabla que contienen "Pedro".

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"
)

Result:

Table.FromRecords({[CustomerID = 1, Name = "Bob", Phone = "123-4567"]})

Category

Table.Row operations