학습
모듈
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.
코드에서 시작하고 /*
끝나는 */
단일 줄 주석 //
또는 다중 줄 주석 사용하여 주석을 추가할 수 있습니다.
예제 - 단일 줄 주석
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.