Skip to main content

Table.Last

ส่งกลับแถวสุดท้ายหรือค่าเริ่มต้นที่ระบุ

Syntax

Table.Last(
table as table,
optional default as any
) as any

Remarks

ส่งกลับแถวสุดท้ายของ table หรือค่าเริ่มต้นที่เลือกได้ default ถ้าตารางว่างเปล่า

Examples

Example #1

ค้นหาแถวสุดท้ายของตาราง

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"]
})
)

Result:

[CustomerID = 3, Name = "Paul", Phone = "543-7890"]

Example #2

ค้นหาแถวสุดท้ายของตาราง <code>({})</code> หรือส่งกลับ [a = 0, b = 0] ถ้าว่างเปล่า

Table.Last(Table.FromRecords({}), [a = 0, b = 0])

Result:

[a = 0, b = 0]

Category

Table.Row operations