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?
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.