Hi, I'm trying to do a cummulative sum within a dynamic array by each row. What I want to achieve is highlighted in blue with normal formulas. I would love your help with how I can achieve same with dynamic arrays. Thank you.
Cusum with DA.xlsx | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
E | F | G | H | I | J | K | L | M | N | O | |||
5 | |||||||||||||
6 | |||||||||||||
7 | |||||||||||||
8 | |||||||||||||
9 | Dynamic array | ||||||||||||
10 | 0.5 | 0.7 | 0.3 | 0.9 | 0.3 | ||||||||
11 | 0.3 | 0.7 | 0.5 | 1.0 | 0.9 | ||||||||
12 | 0.9 | 0.6 | 0.3 | 0.5 | 0.6 | ||||||||
13 | 0.9 | 0.2 | 1.0 | 0.8 | 0.4 | ||||||||
14 | 0.4 | 0.5 | 0.4 | 0.6 | 0.2 | ||||||||
15 | |||||||||||||
16 | |||||||||||||
17 | what I'm trying to achieve with ddynamic array | ||||||||||||
18 | 0.5 | 1.2 | 1.5 | 2.4 | 2.7 | ||||||||
19 | 0.8 | 2.2 | 3.0 | 4.9 | 6.1 | ||||||||
20 | 1.7 | 3.6 | 4.8 | 7.1 | 8.9 | ||||||||
21 | 2.5 | 4.6 | 6.8 | 10.0 | 12.2 | ||||||||
22 | 2.9 | 5.5 | 8.1 | 11.9 | 14.3 | ||||||||
23 | |||||||||||||
24 | |||||||||||||
25 | |||||||||||||
26 | |||||||||||||
27 | |||||||||||||
28 | |||||||||||||
29 | |||||||||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
H10:L14 | H10 | =RANDARRAY(5,5) |
H18:L22 | H18 | =SUM($H$10:H10) |
Dynamic array formulas. |