In my spreadsheet I am struggling to combine the formulas in order to reduce the columns down.
The Sheet is attached. It's dynamic in that the calculations change if the value in L3 is changed.
The data in Column F (Change) is already availlable on another sheet that I can pull over. So Columns B to E are surplus to requirements and not required.
I want to combine columns G to L so I am left with 3 columns. (1) 'Date' (2) 'Change' (3) the combined G to L columns.
Is this possible?
Thanks
The Sheet is attached. It's dynamic in that the calculations change if the value in L3 is changed.
The data in Column F (Change) is already availlable on another sheet that I can pull over. So Columns B to E are surplus to requirements and not required.
I want to combine columns G to L so I am left with 3 columns. (1) 'Date' (2) 'Change' (3) the combined G to L columns.
Is this possible?
Thanks
Cell Formulas | ||
---|---|---|
Range | Formula | |
F5:F57 | F5 | =E5-E4 |
G5:G57 | G5 | =IF(F5>0,F5,0) |
H5:H57 | H5 | =IF(F5<0,-F5,0) |
I5,I9:I57 | I5 | =IF((ROW()-4-$L$3)<0,"",IF((ROW()-4-$L$3)>0,((I4*($L$3-1))+G5)/$L$3,IF((ROW()-4-$L$3)=0,AVERAGE($G$5:INDIRECT("G"&ROW()))))) |
J5:J57 | J5 | =IF((ROW()-4-$L$3)<0,"",IF((ROW()-4-$L$3)>0,((J4*($L$3-1))+H5)/$L$3,IF((ROW()-4-$L$3)=0,AVERAGE($H$5:INDIRECT("H"&ROW()))))) |
K5:K57 | K5 | =IF((ROW()-4-$L$3)>=0,I5/J5,"") |
L5:L57 | L5 | =IF((ROW()-4-$L$3)>=0,IF(J5=0,100,100-(100/(1+K5))),"") |
I6:I8 | I6 | =IF((ROW()-4-$L$3)<0,"",IF((ROW()-4-$L$3)>0,((I5*($L$3-1))+G6)/$L$3,IF((ROW()-4-$L$3)=0,AVERAGE($G$5:INDIRECT("H"&ROW()))))) |