Skip to main content

Table.SingleRow

ส่งกลับแถวเดียวในตาราง

Syntax

Table.SingleRow(
table as table
) as record

Remarks

ส่งกลับแถวเดียวในหนึ่งแถว table ถ้า table มีมากกว่าหนึ่งแถว ระบบจะแสดงข้อยกเว้น

Examples

Example #1

ส่งคืนแถวเดี่ยวในตาราง

Table.SingleRow(Table.FromRecords({[CustomerID = 1, Name = "Bob", Phone = "123-4567"]}))

Result:

[CustomerID = 1, Name = "Bob", Phone = "123-4567"]

Category

Table.Row operations