Table.Contains
Indica se o registo especificado aparece como uma linha na tabela.
Syntax
Table.Contains(
table as table,
row as record,
optional equationCriteria as any
) as logical
Remarks
Indica se o registo especificado, row
, aparece como uma linha na table
. É possível especificar um parâmetro opcional equationCriteria
para controlar a comparação entre as linhas da tabela.
Examples
Example #1
Determinar se a tabela contém a linha.
Table.Contains(
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"]
}),
[Name = "Bob"]
)
Result:
true
Example #2
Determinar se a tabela contém a linha.
Table.Contains(
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"]
}),
[Name = "Ted"]
)
Result:
false
Example #3
Determinar se a tabela contém a linha comparando apenas a coluna [Nome].
Table.Contains(
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"]
}),
[CustomerID = 4, Name = "Bob"],
"Name"
)
Result:
true
Category
Table.Membership