Table.RemoveRows

 

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.

Returns a table with the specified number of rows removed from the table starting at an offset.

Table.RemoveRows( table as table, offset as number, optional count as nullable number) as table  

ArgumentDescription
tableThe Table to remove rows from.
offsetThe row to start removal at.
optional countOptional number of rows to remove. Default count is 1.
  • Table.RemoveRows is similar to List.RemoveRange but requires a table as input.
Table.RemoveRows(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"]  
  
}), 2)  

CustomerIDNamePhone
1Bob123-4567
2Jim987-6543
4Ringo232-1550
Show: