Reputation: 55
I'm having some trouble calculating the following expression's result in Excel
SUM(n=1 to 4) of 180/(1+0.05)^n
I read about the seriessum
function, but I think this function is not able to apply the required step to the denominator. Could someone please suggest another solution?
Upvotes: 0
Views: 668
Reputation:
You need an extra layer of processing, either an array formula or array processing with a SUMPRODUCT function wrapper.
The standard formula model is:
=SUMPRODUCT(180/(1+0.05)^ROW(1:4))
The array formula model is:
=SUM(180/(1+0.05)^ROW(1:4))
Array formulas need to be finalized with Ctrl+Shift+Enter↵. If entered correctly, your results should be similar to the following.
Upvotes: 2
Reputation: 96763
In A1 enter:
=180/(1.05)^ROW()
and copy down to A4
then in B1 enter:
=SUM(A:A)
Upvotes: 1