การฝึกอบรม
โมดูล
Create and manage columns within a table in Microsoft Dataverse - Training
Learn how to create and manage table columns in Dataverse.
เบราว์เซอร์นี้ไม่ได้รับการสนับสนุนอีกต่อไป
อัปเกรดเป็น Microsoft Edge เพื่อใช้ประโยชน์จากคุณลักษณะล่าสุด เช่น การอัปเดตความปลอดภัยและการสนับสนุนด้านเทคนิค
Table.AddColumn(table as table, newColumnName as text, columnGenerator as function, optional columnType as nullable type) as table
เพิ่มคอลัมน์ที่ชื่อว่า newColumnName
ลงในตาราง table
ค่าสําหรับคอลัมน์จะถูกคํานวณโดยใช้ฟังก์ชันการเลือกที่ระบุ columnGenerator
กับแต่ละแถวที่ใช้เป็นข้อมูลป้อนเข้า
เพิ่มคอลัมน์ตัวเลขที่ชื่อ "TotalPrice" เข้าในตาราง โดยแต่ละค่าจะเป็นผลรวมของคอลัมน์ [Price] และ [Shipping]
การใช้งาน
Table.AddColumn(
Table.FromRecords({
[OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0, Shipping = 10.00],
[OrderID = 2, CustomerID = 1, Item = "1 lb. worms", Price = 5.0, Shipping = 15.00],
[OrderID = 3, CustomerID = 2, Item = "Fishing net", Price = 25.0, Shipping = 10.00]
}),
"TotalPrice",
each [Price] + [Shipping],
type number
)
ผลลัพธ์ของ
Table.FromRecords({
[OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100, Shipping = 10, TotalPrice = 110],
[OrderID = 2, CustomerID = 1, Item = "1 lb. worms", Price = 5, Shipping = 15, TotalPrice = 20],
[OrderID = 3, CustomerID = 2, Item = "Fishing net", Price = 25, Shipping = 10, TotalPrice = 35]
})
การฝึกอบรม
โมดูล
Create and manage columns within a table in Microsoft Dataverse - Training
Learn how to create and manage table columns in Dataverse.