Loading...
Adds only the positive numbers in a range.
=SUM_POSITIVE(A1:A20)
RELATED LAMBDAS IN MATH
Recursive factorial calculation using LAMBDA recursion.
LAMBDA(n, IF(n <= 1, 1, n * FACTORIAL(n ...