Running Multiplication LAMBDA Function?

ExcelToDAX

Active Member
Joined
Feb 9, 2023
Messages
264
Office Version
  1. 365
Platform
  1. Windows
I have the following Current Values in B7:D9 using the formula....


=MAKEARRAY(3, 3, LAMBDA(r,c, r*c))/10

How can I multiple each row by the previous value?

G7:I9 is what I want, but in a spilled function instead.

L7:N9 are the current formulas I have, but I would like this to be one spilled function.

1725035834790.png
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
How about:

Excel Formula:
=MAKEARRAY(3, 3, LAMBDA(r,c, IF(c=1,r*c/10,r*c*r*(c-1)%)))
 
Upvote 1
Solution
How about:

Excel Formula:
=MAKEARRAY(3, 3, LAMBDA(r,c, IF(c=1,r*c/10,r*c*r*(c-1)%)))
Thank you for your response @RoryA ! What if I wanted to just use B7# instead of baking the previous formula into it? I just used the MAKEARRAY function as an example, I realistically have a spilled function that contains a bunch of percentages but it was too complicated to include that in the question.
 
Upvote 0
Would it be
Excel Formula:
=MAKEARRAY(ROWS(B7#), COLUMNS(B7#), LAMBDA(r,c, IF(c=1,r*c/10,r*c*r*(c-1)%)))
 
Upvote 0
I don't really know what you are trying to do now, so you tell me: does that work? :)
 
Upvote 0

Forum statistics

Threads
1,225,749
Messages
6,186,802
Members
453,373
Latest member
Ereha

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top