訓練
模組
Create and manage columns within a table in Microsoft Dataverse - Training
Learn how to create and manage table columns in Dataverse.
Table.Column(table as table, column as text) as list
將資料表 table
中 column
所指定的資料行傳回成清單。
傳回資料表中 [Name] 資料行的值。
使用方式
Table.Column(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 4, Name = "Ringo", Phone = "232-1550"]
}),
"Name"
)
輸出
{"Bob", "Jim", "Paul", "Ringo"}
訓練
模組
Create and manage columns within a table in Microsoft Dataverse - Training
Learn how to create and manage table columns in Dataverse.