Pular para o conteúdo principal

Table.SingleRow

Retorna a única linha da tabela.

Syntax

Table.SingleRow(
table as table
) as record

Remarks

Retorna a única linha da única table de linhas. Se a table tiver mais de uma linha, uma exceção será lançada.

Examples

Example #1

Localizar a única linha da tabela.

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

Result:

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

Category

Table.Row operations