Zum Hauptinhalt springen

Table.SingleRow

Gibt die einzelne Zeile in der Tabelle zurück.

Syntax

Table.SingleRow(
table as table
) as record

Remarks

Gibt die einzelne Zeile im einzeiligen Element vom Typ "table" zurück. Enthält das Element vom Typ "table" mehrere Zeilen, wird eine Ausnahme ausgelöst.

Examples

Example #1

Gibt die einzelne Zeile in der Tabelle zurück.

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

Result:

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

Category

Table.Row operations