Table.First
ส่งกลับแถวแรกหรือค่าเริ่มต้นที่ระบุ
Syntax
Table.First(
table as table,
optional default as any
) as any
Remarks
ส่งกลับแถวแรกของ table
หรือค่าเริ่มต้นที่เลือกได้ default
ถ้าตารางว่างเปล่า
Examples
Example #1
ค้นหาแถวแรกของตาราง
Table.First(
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 = 1, Name = "Bob", Phone = "123-4567"]
Example #2
ค้นหาแถวแรกของตาราง <code>({})</code> หรือส่งกลับ [a = 0, b = 0] ถ้าว่างเปล่า
Table.First(Table.FromRecords({}), [a = 0, b = 0])
Result:
[a = 0, b = 0]
Category
Table.Row operations