I'm asking this here in order to AVOID having to write a VBA function! The task is to give a compounded rate of growth for the following sequence (which I'm artificially making symmetric to illustrate a point):
1000 1500 2250 3375
The user wants to say that he's averaged a 50% growth rate for the past 3 years.
Now the easy solution is just to enter the solutoin directly on the sheet, giving (3375-1000) ^ (1/3). However the desire is to have a general function foo(A,B,C) that returns (B-A) ^ (1/C).
So is that functionality already available, or do I have to give function foo?
The number of years (or periods) may vary, but all that's under control. I just want to know if there is a function for this compound growth rate.
1000 1500 2250 3375
The user wants to say that he's averaged a 50% growth rate for the past 3 years.
Now the easy solution is just to enter the solutoin directly on the sheet, giving (3375-1000) ^ (1/3). However the desire is to have a general function foo(A,B,C) that returns (B-A) ^ (1/C).
So is that functionality already available, or do I have to give function foo?
The number of years (or periods) may vary, but all that's under control. I just want to know if there is a function for this compound growth rate.