Thanks WldBill
But if I can only input FV and -PV into IRR, then n must be limited to 1.
For example, if I start with 100 and end with 500, the IRR formula gives me
an i of 400%. Technically this is true, the investment increased by 400%.
But this tells me nothing of the time involved. I need an annual i to make
it meaninngful.
In the example above, if it took 4 years to go from 100 to 500, then the
annual i is 49.53%, a big difference from the 400% IRR gives me.
To me it is strange that this functionality was omitted from Excel.
>>Is there a built in function for calculating the interest rate for a
>>single
[quoted text clipped - 15 lines]
>
> Use IRR for a single period, XIRR otherwise. Negate the PV in each case.
Dana DeLouis - 18 Aug 2007 23:07 GMT
Perhaps the "Rate" function.
=RATE(4,0,-100,500)
-> 49.53%
I thought "single sum" was for one period also.

Signature
HTH :>)
Dana DeLouis
> Thanks WldBill
>
[quoted text clipped - 33 lines]
>>
>> Use IRR for a single period, XIRR otherwise. Negate the PV in each case.
Dave - 18 Aug 2007 23:26 GMT
Thank you Dana.
Help says RATE is for an annuity but I didn't think to specify a PMT of 0.
When you do, Excel treats it as a single sum (lump sum).
Thanks again.
> Perhaps the "Rate" function.
>
[quoted text clipped - 40 lines]
>>>
>>> Use IRR for a single period, XIRR otherwise. Negate the PV in each case.
Dana DeLouis - 18 Aug 2007 23:40 GMT
Hi. Glad it helps.
Just to mention, one can also omit the 0:
=RATE(4,,-100,500)
or...
=POWER(500/100,1/4)-1

Signature
Dana DeLouis
> Thank you Dana.
>
[quoted text clipped - 49 lines]
>>>> Use IRR for a single period, XIRR otherwise. Negate the PV in each
>>>> case.
Wild Bill - 18 Aug 2007 23:15 GMT
Check what I said again. To use XIRR, add a pair of dates by the -PV and
FV, and make that range the second argument. The third "guess" argument
is optional, and you can experiment with its effect, if any.
But if you know N, you might as well simply take the IRR
^(1/N) As that goes, the math to avoid using IRR is almost as simple :)