การฝึกอบรม
โมดูล
Author a basic formula that uses tables and records in a Power Apps canvas app - Training
Learn how to author a basic formula that uses tables and records in a Power Apps canvas app.
เบราว์เซอร์นี้ไม่ได้รับการสนับสนุนอีกต่อไป
อัปเกรดเป็น Microsoft Edge เพื่อใช้ประโยชน์จากคุณลักษณะล่าสุด เช่น การอัปเดตความปลอดภัยและการสนับสนุนด้านเทคนิค
Table.Transpose(table as table, optional columns as any) as table
เปลี่ยนคอลัมน์ให้เป็นแถวและเปลี่ยนแถวให้เป็นคอลัมน์
เปลี่ยนแถวของตารางของคู่ชื่อ-ค่าให้เป็นคอลัมน์
การใช้งาน
Table.Transpose(
Table.FromRecords({
[Name = "Full Name", Value = "Fred"],
[Name = "Age", Value = 42],
[Name = "Country", Value = "UK"]
})
)
ผลลัพธ์ของ
Table.FromRecords({
[Column1 = "Full Name", Column2 = "Age", Column3 = "Country"],
[Column1 = "Fred", Column2 = 42, Column3 = "UK"]
})
การฝึกอบรม
โมดูล
Author a basic formula that uses tables and records in a Power Apps canvas app - Training
Learn how to author a basic formula that uses tables and records in a Power Apps canvas app.
เอกสาร
Table.TransformColumns - PowerQuery M
เรียนรู้เพิ่มเติมเกี่ยวกับ: Table.TransformColumns
Table.TransformColumnNames - PowerQuery M
เรียนรู้เพิ่มเติมเกี่ยวกับ: Table.TransformColumnNames
Table.TransformRows - PowerQuery M
เรียนรู้เพิ่มเติมเกี่ยวกับ: Table.TransformRows