Table.LastN
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 the last row(s) from a table, depending on the countOrCondition parameter.
Table.LastN(table as table, countOrCondition as any) as table
| Argument | Description |
|---|---|
| table | The Table to check. |
| countOrCondition | Depending on the type, more than one row will be returned. |
If countOrCondition is a number, that many rows will be returned starting from the end of the table.
If countOrCondition is a condition, the rows that meet the condition will be returned in ascending position until a row does not meet the condition.
Table.LastN(Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"]
}), 1)
| CustomerID | Name | Phone |
|---|---|---|
| 3 | Paul | 543-7890 |
Show: