Power Query M Blank Function Template

Slap in that 1+1 = 2 blank function template so you don't have to do all the syntaxes

me@jaykilleen.com wrote this over 2 years ago and it was last updated over 2 years ago.


← Back to the Posts

Sometimes you just need a dirt simple template of a Power Query M function to copy/paste and start hacking at to turn into something useful.

And here it is...

some additional comments to guide you....

  • f is your function name
  • x and y are parameters (however many you want)
  • e is the execution of the function
let
   f = (x,y) =>
      let
          e = x + y
      in
        e
in
   f

Similar