Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
I'd would like to know if there is a worksheet function that will allow me to calculate the average annual dividend growth for the last 5 years. Here's my example: YEAR ---- ANNUAL DIVIDEND 2001 ---- $0.12 2002 ---- $0.18 2003 ---- $0.29 2004 ---- $0.44 2005 ---- $0.69 Is there a quick way to calculate the average annual dividend growth? thanks in advance! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=AVERAGE((B2:B5-B1:B4)/B1:B4)
which is an array formula, it should be committed with Ctrl-Shift-Enter, not just Enter. -- HTH Bob Phillips (remove xxx from email address if mailing direct) wrote in message ups.com... Hi, I'd would like to know if there is a worksheet function that will allow me to calculate the average annual dividend growth for the last 5 years. Here's my example: YEAR ---- ANNUAL DIVIDEND 2001 ---- $0.12 2002 ---- $0.18 2003 ---- $0.29 2004 ---- $0.44 2005 ---- $0.69 Is there a quick way to calculate the average annual dividend growth? thanks in advance! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Disregard the intermediate values:
Use (Last-First)/4 or .1425.: Here is the comparison of growth vs average growth 0.12 0.1200 0.18 0.2625 0.29 0.4050 0.44 0.5475 0.69 0.6900 This corresponds to a 54.87% average increase. -- Gary''s Student " wrote: Hi, I'd would like to know if there is a worksheet function that will allow me to calculate the average annual dividend growth for the last 5 years. Here's my example: YEAR ---- ANNUAL DIVIDEND 2001 ---- $0.12 2002 ---- $0.18 2003 ---- $0.29 2004 ---- $0.44 2005 ---- $0.69 Is there a quick way to calculate the average annual dividend growth? thanks in advance! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
" wrote:
I'd would like to know if there is a worksheet function that will allow me to calculate the average annual dividend growth for the last 5 years. Here's my example: YEAR ---- ANNUAL DIVIDEND 2001 ---- $0.12 2002 ---- $0.18 2003 ---- $0.29 2004 ---- $0.44 2005 ---- $0.69 As used in financial models (e.g. Gordon Growth Model), I believe the annual dividend growth rate is the __geometric__ average rate. This could be computed as follows: =(0.69/0.12)^(1/4) - 1 But that is the same as asking for the "interest" rate for a PV of 0.12 that grows to a FV of 0.69 in 4 periods. The Excel function for that is: =RATE(4,, -0.12, 0.69) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to: average annual growth | Excel Worksheet Functions | |||
Calculating average annual change in real estate value | Excel Discussion (Misc queries) | |||
average annual return | Excel Worksheet Functions | |||
Compound Annual Growth Rate | Excel Discussion (Misc queries) | |||
Compound annual growth rate [CAGR] | Excel Discussion (Misc queries) |