| description | Learn more about: Function.Invoke |
|---|---|
| title | Function.Invoke |
| ms.subservice | m-source |
| ms.topic | reference |
Function.Invoke(function as function, args as list) as any
Invokes the given function using the specified list of arguments and returns the result.
Invokes Record.FieldNames with one argument [A=1,B=2]
Usage
Function.Invoke(Record.FieldNames, {[A = 1, B = 2]})
Output
{"A", "B"}