Function.Invoke
This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.
Invokes the given function using the specified Arguments and returns the result.
Function.Invoke(function as function, args as list) as any
| Argument | Description |
|---|---|
| function | The function to invoke. |
| args | The list of required Arguments. |
Function.Invoke(Record.FieldNames, {[A=1,B=2]}) equals {"A", "B"}
Show: