Lambda function calling another lambda function in Excel?

191 Views Asked by At

I am trying to create an Excel lambda function that calls another lambda function. But Excel returned #VALUE! when I ran it. Does Excel support this kind of operation?

enter image description here enter image description here

enter image description here

1

There are 1 best solutions below

0
Scoodood On BEST ANSWER

I found the solution. Just call the mylambda1 function within the let function as follows:

mylambda1 = lambda(a, b, a+b)
mylambda2 = lambda(a, b, let(x, a, y, b, mylambda1(x,y)))

enter image description here

Output

enter image description here

Cheers!