Forum Discussion
Jinoh
4 years agoNew Member
How to add functions in advanced editor(Power Query)
I'm a newcomer for Power Query and I'm wondering how to add some functions in Power Query Advanced editor Here's my current advanced editor function let Source = Table.Combine({#"Amazon May i...
- 4 years ago
Jinoh Here is the official documentation on using custom functions with Power Query.
Using custom functions in Power Query - Power Query | Microsoft Docs
Custom functions have a slightly different syntax than queries as they are designed to ingest parameters.
let Source = () => let Source = "" in Source in Source
Greg_Deckler
4 years agoCommunity Champion
Jinoh Here is the official documentation on using custom functions with Power Query.
Using custom functions in Power Query - Power Query | Microsoft Docs
Custom functions have a slightly different syntax than queries as they are designed to ingest parameters.
let
Source = () => let
Source = ""
in
Source
in
Source