Table.SingleRow
Sintaxe
Table.SingleRow(table as table) as record
Sobre
Retorna a única linha da linha table
. Se o table
não contiver exatamente uma linha, um erro será gerado.
Exemplo 1
Retornar a única linha da tabela.
Usage
Table.SingleRow(Table.FromRecords({[CustomerID = 1, Name = "Bob", Phone = "123-4567"]}))
Saída
[CustomerID = 1, Name = "Bob", Phone = "123-4567"]