[Power Query] [m] Closures
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
//overwrite function type for _fn_ with a parameter list limited to x | |
fnCopy = (x) => setParameters(fn,{1..x}) | |
in //wrap the previous overwrite in another function call with allowed parameters {1..9} | |
setParameters(fnCopy,{1..9}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment