Leggere in inglese

Condividi tramite


Commenti

È possibile aggiungere commenti al codice su una riga singola che inizia con // o su più righe che iniziano con /* e terminano con */.

Esempio: commento su una riga singola

let
   //Convert to proper case.
    Source = Text.Proper("hello world")
in
    Source

Esempio: commento su più righe

/* 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"