Przejdź do głównej zawartości

Table.ContainsAll

Wskazuje, czy wszystkie określone rekordy występują jako wiersze w tabeli.

Syntax

Table.ContainsAll(
table as table,
rows as list,
optional equationCriteria as any
) as logical

Remarks

Wskazuje, czy wszystkie rekordy określone na liście rekordów rows występują jako wiersze w tabeli table. Opcjonalny parametr equationCriteria można określić, aby sterować porównywaniem wierszy tabeli.

Examples

Example #1

Ustal, czy tabela zawiera wszystkie wiersze, porównując tylko wartości w kolumnie [CustomerID].

Table.ContainsAll(
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 = 1, Name = "Bill"],
[CustomerID = 2, Name = "Fred"]
},
"CustomerID"
)

Result:

true

Example #2

Ustal, czy tabela zawiera wszystkie wiersze.

Table.ContainsAll(
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 = 1, Name = "Bill"],
[CustomerID = 2, Name = "Fred"]
}
)

Result:

false

Category

Table.Membership