Table.ReverseRows

Updated on

Table.ReverseRows is a Power Query M function that reverses the row order of the input table. The function returns a table with the rows in reversed order.

Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365

Syntax

Table.ReverseRows( table as table ) as table

Description

Table.ReverseRows inverts the order of rows in the given table, placing the last row first and vice versa.

Examples

Reverse the rows in the table.

Table.ReverseRows( 
    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"]
    } )
 )

 /* Output: 
Table.FromRecords( {
    [CustomerID = 4, Name = "Ringo", Phone = "232-1550"],
    [CustomerID = 3, Name = "Paul", Phone = "543-7890"],
    [CustomerID = 2, Name = "Jim", Phone = "987-6543"],
    [CustomerID = 1, Name = "Bob", Phone = "123-4567"]
} )
 */ 

Other functions related to Table.ReverseRows are:

Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/powerquery-m/table-reverserows

2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy