Table.Contains
Table.Contains(table as table, row as record, optional equationCriteria as any) as logical
Wskazuje, czy określony rekord , row
jest wyświetlany jako wiersz w pliku table
. Można określić opcjonalny parametr equationCriteria
w celu kontrolowania porównania między wierszami tabeli.
Ustal, czy tabela zawiera wiersz.
Użycie
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"]
)
Wyjście
true
Ustal, czy tabela zawiera wiersz.
Użycie
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"]
)
Wyjście
false
Ustal, czy tabela zawiera wiersz porównujący tylko kolumnę [Name].
Użycie
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"
)
Wyjście
true