I created a lambda function to look up the cost of a part and a different function to look up the weight of a part. I want to create a new lambda function that calls both functions and outputs the result across two cells, is that possible?
Gemini suggested this:
But the name manager seems to fail on the {
Gemini suggested this:
Excel Formula:
=LAMBDA(part,QTY,
LET(cost, COST(part, IF(ISOMITTED(QTY), 1, QTY)),
weight, WEIGHT(part, IF(ISOMITTED(QTY), 1, QTY)),
{cost, weight}))