Table.ContainsAll

 

This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.

Determines whether all of the specified records appear as rows in the table.

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

ArgumentDescription
tableThe Table to check.
rowsThe List of rows to check for.
optional equationCriteriaAn optional value that specifies how to control comparison between the rows of the table.
  • Table.ContainsAll is similar to List.ContainsAll but requires a table as input.
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")  
  
equals true  

Show: