need function help with array formulas

Scott R

Active Member
Joined
Feb 20, 2002
Messages
463
Office Version
  1. 365
Platform
  1. Windows
I'd like one formula to do all the work to produce the answer in E16.
The input cells are in B3:D5 and B7.
In other words, I'd like the input cells within the formula rather than in other cells.

Thanks!


GARCH reverse engineer.xlsm
ABCDE
1time-->
2data set #123
313710
42126
53137
6
712.002.834.76
822.002.002.45
932.002.002.83
10
1116.0019.8047.5773.37
1222.004.0014.7020.70
1332.006.0019.8027.80
1428.58
1528.58
1628.58
function
Cell Formulas
RangeFormula
C7:D9C7=SQRT( B11 + B7 )
B8:B9B8=B7
B11:D13B11=B3 * B7
E11:E13E11=SUM(B11:D11)
E14E14=STDEV.S(E11:E13)
E15E15=STDEV.S( BYROW( B11:D13, LAMBDA(r, SUM( r ))))
E16E16=STDEV.S( BYROW( B3:D5 * B7:D9, LAMBDA(r, SUM( r ))))
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
How about
Excel Formula:
=LET(a,B3:B5*B7,b,SQRT(a+B7),c,b*C3:C5,d,SQRT(b+c),e,d*D3:D5,STDEV.S(BYROW(HSTACK(a,c,e),LAMBDA(br,SUM(br)))))
 
Upvote 0
Very cool. My concern is that I'd like to scale this up to a much larger array than 3x3.
 
Upvote 0
It would have helped if you had said that to start with. ;)
I have no idea how to creat a single formula to work with any size array.
 
Upvote 0
Thought it would be a recursive formula. Maybe it's not possible.
 
Upvote 0
It's almost certainly possible, but I don't know how.
 
Upvote 0

Forum statistics

Threads
1,215,107
Messages
6,123,127
Members
449,097
Latest member
mlckr

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