ITookUrJob
New Member
- Joined
- Oct 13, 2021
- Messages
- 2
- Office Version
- 365
- Platform
- Windows
I am trying to understand syntax and terminology of M-language as I am new to its syntax.
I am trying to understand couple of things of PowerQuery m language syntax:
• Does let statement decide the order displayed in "Applied steps" pane?
• What is the point of "in" statement if the last step is the final transformation to be evaluated anyway?
• Should I call each step in the "let" statement a function, or a variable (I am confused on terminology here). I understand Source is a variable, but its a function as well, correct if I am wrong on this.
Reply
Power Query:
let
Source = #table(
type table [OrderID = number, CustomerID = number, Item = text, Price = number],
{
{1, 1, "Fishing rod", 100.00},
{2, 1, "1 lb. worms", 5.00}
}
)
in
Source{1}
I am trying to understand couple of things of PowerQuery m language syntax:
• Does let statement decide the order displayed in "Applied steps" pane?
• What is the point of "in" statement if the last step is the final transformation to be evaluated anyway?
• Should I call each step in the "let" statement a function, or a variable (I am confused on terminology here). I understand Source is a variable, but its a function as well, correct if I am wrong on this.
Reply