What Excel function can I use to calculate cumulative total return?

Mr. Snrub

Board Regular
Joined
May 22, 2005
Messages
147
Office Version
  1. 365
Platform
  1. Windows
A particular investment returns 50% on the first trading day, it returns another 50% on the next trading day, and it returns 100% on the third trading day. The total return on my investment is 350%. Given only the percentage returns, how do I calculate this in Excel?

Start100
After Day1150
After Day2225
After Day3450

The total return is (450-100)/100 = 350%. But how can I calculate this if I'm only given the +50%, +50%, and +100% values?
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
The function can be rewritten as ([start]+(1+[Day1%])*(1+[Day2%])*(1+[Day3%]), but I was wondering if there was something like FUNCTION([start], B2:B4) instead, where the daily percentage returns are in cells B2, B3, and B4.
 
Upvote 0
The cumulative return (as a factor) is the product of the intermediate returns. In this case:
Excel Formula:
(1 + 50%) * (1 + 50%) * (1 + 100%) = 4.5
We convert it back to a percentage by subtracting 1: 4.5 - 1 = 3.5, or 350%

If you convert your percentage returns to factors (ie, add 1 to each of them), take the product of the factors (easiest to use the 'PRODUCT' function) and subtract 1, you will get the cumulative return
 
Upvote 0

Forum statistics

Threads
1,214,912
Messages
6,122,200
Members
449,072
Latest member
DW Draft

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