Apmācība
Modulis
Create tables in Microsoft Dataverse - Training
Explore secure data management with Dataverse, learning how to create tables and import data into a cloud-based storage system.
Šī pārlūkprogramma vairs netiek atbalstīta.
Jauniniet uz Microsoft Edge, lai izmantotu jaunāko līdzekļu, drošības atjauninājumu un tehniskā atbalsta sniegtās priekšrocības.
Table.FromValue(value as any, optional options as nullable record) as table
Creates a table with a column containing the provided value or list of values, value
. An optional record parameter, options
, may be specified to control the following options:
DefaultColumnName
: The column name used when constructing a table from a list or scalar value.Create a table from the value 1.
Usage
Table.FromValue(1)
Output
Table.FromRecords({[Value = 1]})
Create a table from the list.
Usage
Table.FromValue({1, "Bob", "123-4567"})
Output
Table.FromRecords({
[Value = 1],
[Value = "Bob"],
[Value = "123-4567"]
})
Create a table from the value 1, with a custom column name.
Usage
Table.FromValue(1, [DefaultColumnName = "MyValue"])
Output
Table.FromRecords({[MyValue = 1]})
Apmācība
Modulis
Create tables in Microsoft Dataverse - Training
Explore secure data management with Dataverse, learning how to create tables and import data into a cloud-based storage system.