excel-lambda

Lambda function calling another lambda function in Excel?


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


Solution

  • mylambda1 takes two arguments, but in mylambda2, you are calling mylambda1 with only one: x+y.

    Change mylambda2 to:

    =LAMBDA(a,b,mylambda1(a,b))
    

    No need for a LET function in this case.