การฝึกอบรม
โมดูล
Add collaborative comments in Power Automate - Training
In this module, you'll explore how to use comments to collaborate when you create cloud flows in Power Automate.
เบราว์เซอร์นี้ไม่ได้รับการสนับสนุนอีกต่อไป
อัปเกรดเป็น Microsoft Edge เพื่อใช้ประโยชน์จากคุณลักษณะล่าสุด เช่น การอัปเดตความปลอดภัยและการสนับสนุนด้านเทคนิค
คุณสามารถเพิ่มข้อคิดเห็นลงในโค้ดของคุณด้วยข้อคิดเห็น//
บรรทัดเดียวหรือข้อคิดเห็นแบบหลายบรรทัดที่ขึ้นต้นด้วย /*
และลงท้ายด้วย*/
ตัวอย่าง - ข้อคิดเห็นบรรทัดเดียว
let
//Convert to proper case.
Source = Text.Proper("hello world")
in
Source
ตัวอย่าง - ข้อคิดเห็นหลายบรรทัด
/* Capitalize each word in the Item column in the Orders table. Text.Proper
is evaluated for each Item in each table row. */
let
Orders = Table.FromRecords({
[OrderID = 1, CustomerID = 1, Item = "fishing rod", Price = 100.0],
[OrderID = 2, CustomerID = 1, Item = "1 lb. worms", Price = 5.0],
[OrderID = 3, CustomerID = 2, Item = "fishing net", Price = 25.0]}),
#"Capitalized Each Word" = Table.TransformColumns(Orders, {"Item", Text.Proper})
in
#"Capitalized Each Word"
การฝึกอบรม
โมดูล
Add collaborative comments in Power Automate - Training
In this module, you'll explore how to use comments to collaborate when you create cloud flows in Power Automate.