Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Natalie
 
Posts: n/a
Default Cumulative Return

I have a series of monthly return and need to create a formula that can
compute it's cumulative return in the following manner:
(1+return1)*(1+return2)*(1+return3))*(1+return4)*( 1+return5)

Subsequently, I would need to compute the "average" return by creating
another formula in the following manner:
((1+return1)*(1+return2)*(1+return3)*(1+return4)*( 1+return5))^(1/n) €“ 1,
where "n" should be the "count" of months.

Appreciate any assistance. Thank you!!!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Marcelo
 
Posts: n/a
Default Cumulative Return

Natalie,

You should create a line to add 1 for each return than, the formula could be:
(assuming that the returns are between column C and G and line( +1) is 30)

Cumulative = "=product(c30:g30)-1"
Average = "=product(c30:g30)^(1/count(c30:g30))-1"

Hope its hekps

Marcelo - Brazil


"Natalie" escreveu:

I have a series of monthly return and need to create a formula that can
compute it's cumulative return in the following manner:
(1+return1)*(1+return2)*(1+return3))*(1+return4)*( 1+return5)

Subsequently, I would need to compute the "average" return by creating
another formula in the following manner:
((1+return1)*(1+return2)*(1+return3)*(1+return4)*( 1+return5))^(1/n) €“ 1,
where "n" should be the "count" of months.

Appreciate any assistance. Thank you!!!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Fred Smith
 
Posts: n/a
Default Cumulative Return

As Marcelo said, the best way to calculate the total return is to create another
column with =1+return in it. Then you can use the Product function. If this is a
series which gets added to every month, you can make the formula more easily
extendible by using:

=Product($c$30:g30)-1

That way, when you extend the formula to column h, it will copy without
requiring editing.

To calculate the average, I'm sure you want the average *compound* return. The
easiest way is to use the Rate function, as in:

=Rate((column(g30)-column($c30)+1),0,-1,1+totalreturn)

--
Regards,
Fred


"Marcelo" wrote in message
...
Natalie,

You should create a line to add 1 for each return than, the formula could be:
(assuming that the returns are between column C and G and line( +1) is 30)

Cumulative = "=product(c30:g30)-1"
Average = "=product(c30:g30)^(1/count(c30:g30))-1"

Hope its hekps

Marcelo - Brazil


"Natalie" escreveu:

I have a series of monthly return and need to create a formula that can
compute it's cumulative return in the following manner:
(1+return1)*(1+return2)*(1+return3))*(1+return4)*( 1+return5)

Subsequently, I would need to compute the "average" return by creating
another formula in the following manner:
((1+return1)*(1+return2)*(1+return3)*(1+return4)*( 1+return5))^(1/n) - 1,
where "n" should be the "count" of months.

Appreciate any assistance. Thank you!!!



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
annualized return calculation for the purpose of portfolio performance evaluation sharkey Excel Worksheet Functions 2 April 8th 06 09:41 PM
Return SEARCHED Column Number of Numeric Label and Value Sam via OfficeKB.com Excel Worksheet Functions 23 January 30th 06 06:16 PM
Count Intervals of 1 Numeric value in a Row and Return Count down Column Sam via OfficeKB.com Excel Worksheet Functions 8 October 4th 05 04:37 PM
Huge problem with "if" formula's [email protected] Excel Discussion (Misc queries) 16 July 20th 05 07:20 PM
Excel - return a picture or range rows as the result of a formula juststarting Excel Worksheet Functions 1 July 4th 05 12:59 AM


All times are GMT +1. The time now is 04:33 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"