Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Syntax
Table.Last(table as table, optional default as any) as any
About
Returns the last row of the table or an optional default value, default, if the table is empty.
Example 1
Find the last row of the table.
Usage
Table.Last(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"]
})
)
Output
[CustomerID = 3, Name = "Paul", Phone = "543-7890"]
Example 2
Find the last row of the table ({}) or return [a = 0, b = 0] if empty.
Usage
Table.Last(Table.FromRecords({}), [a = 0, b = 0])
Output
[a = 0, b = 0]