Saltar al contenido principal

Table.SingleRow

Devuelve la única fila de la tabla.

Syntax

Table.SingleRow(
table as table
) as record

Remarks

Devuelve la única fila de fila uno table. Si la table tiene más de una fila, se inicia una excepción.

Examples

Example #1

Devolver la fila única de la tabla.

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

Result:

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

Category

Table.Row operations