Table.SingleRow
Table.SingleRow(table as table) as record
傳回單列 table
的單一資料列。 如果 table
未確切地包含單一資料列,就會引發錯誤。
傳回資料表中的單一資料列。
使用方式
Table.SingleRow(Table.FromRecords({[CustomerID = 1, Name = "Bob", Phone = "123-4567"]}))
輸出
[CustomerID = 1, Name = "Bob", Phone = "123-4567"]