Power Query
published
Search
K

Function.Invoke

Function.Invoke

Invokes the given function
function (function as function, args as list) as nullable any

Description

Invokes the given function using the specified list of arguments and returns the result.

Category

Function

Examples

Invokes Record.FieldNames with one argument [A=1,B=2]
Function.Invoke(Record.FieldNames, {[A=1,B=2]})
{ "A", "B" }