Silverjman
Board Regular
- Joined
- Mar 19, 2014
- Messages
- 110
Particularly "since inception" Total Returns where (1+ x.x%) each individual quarters return, for compounding, would be too onerous.
I've seen User Defined functions on other message boards but they don't give me the same returns and don't seem very "robust", or I botched them despite the amount of time I threw at them.
Quarterly Returns Q62:X62
<code style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; white-space: inherit;"> Q ---------R------ S----T------ U--- ---V -----W ---X
</code>0.0032 -0.00670.01850.0009 -0.00550.02000.05060.0742
------0.32% -0.67% 1.85% 0.09% -0.55% 2.00% 5.06% 7.42%------
Total Return = 7.8397% whether it's calculated with
<code style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; white-space: inherit;">{=PRODUCT(1+$Q62:X62)^(4/COUNT($Q62:X62))-1}
</code>
or
<code style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; white-space: inherit;">=(SUMPRODUCT(1+Q62,1+R62,1+S62,1+T62,1+U62,1+V62,1+W62,1+X62)^(4/8))-1
</code>
Is there a simple way I can adjust the SUMPRODUCT calculation or does this require a User Defined function? Over 40 quarters the above SUMPRODUCT method becomes untenable. THANKS!!!
I've seen User Defined functions on other message boards but they don't give me the same returns and don't seem very "robust", or I botched them despite the amount of time I threw at them.
Quarterly Returns Q62:X62
<code style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; white-space: inherit;"> Q ---------R------ S----T------ U--- ---V -----W ---X
</code>0.0032 -0.00670.01850.0009 -0.00550.02000.05060.0742
------0.32% -0.67% 1.85% 0.09% -0.55% 2.00% 5.06% 7.42%------
Total Return = 7.8397% whether it's calculated with
<code style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; white-space: inherit;">{=PRODUCT(1+$Q62:X62)^(4/COUNT($Q62:X62))-1}
</code>
or
<code style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; white-space: inherit;">=(SUMPRODUCT(1+Q62,1+R62,1+S62,1+T62,1+U62,1+V62,1+W62,1+X62)^(4/8))-1
</code>
Is there a simple way I can adjust the SUMPRODUCT calculation or does this require a User Defined function? Over 40 quarters the above SUMPRODUCT method becomes untenable. THANKS!!!
Last edited: