Table.FromRecords
Table.FromRecords(records as list, optional columns as any, optional missingField as nullable number) as table
Konwertuje records
, listę rekordów na tabelę.
Utwórz tabelę na podstawie rekordów przy użyciu nazw pól rekordów jako nazw kolumn.
Użycie
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"]
})
Wyjście
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"]
})
Utwórz tabelę na podstawie rekordów z wpisanymi kolumnami i wybierz kolumny liczbowe.
Użycie
Table.ColumnsOfType(
Table.FromRecords(
{[CustomerID = 1, Name = "Bob"]},
type table[CustomerID = Number.Type, Name = Text.Type]
),
{type number}
)
Wyjście
{"CustomerID"}