LAMBDA and higher-order functions
LAMBDA, LET, MAP/REDUCE/BYROW/BYCOL/SCAN/MAKEARRAY, and GROUPBY/PIVOTBY
LAMBDA
=LAMBDA(x, x*x)(5) → 25
=LAMBDA(a, b, a+b)(2, 3) → 5=MAP(A1:A3, LAMBDA(v, v*2))LET
=LET(n, 5, n*2) → 10
=LET(a, 3, b, 4, a+b) → 7
=LET(name, "World", "Hello "&name) → "Hello World"Closures via LET capture
Higher-order functions
MAP
REDUCE
SCAN
BYROW / BYCOL
MAKEARRAY
GROUPBY
Arg
Purpose
PIVOTBY
Dependency tracking through lambda bodies
Named LAMBDAs (workbook scope)
What's not yet supported
Last updated