Ana içeriğe geç

Table.SingleRow

Tablodaki tek bir satırı döndürür.

Syntax​

Table.SingleRow(
table as table
) as record

Remarks​

table satırındaki tek bir satırı döndürür. table birden fazla satıra sahipse, bir hata oluşur.

Examples​

Example #1​

Tablodaki tek satırı döndürür.

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

Result:

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

Category​

Table.Row operations