pittsburgcat said:
RE: How can I use excel to calculate average annual ROI...
or IRR. Any help would be appreciated.
I might not understand your question correctly because the subject line
might be truncated and you did not repeat/rephrase your complete question in
the body of your posting.
First, there are many definitions of ROI. You need to tell us which one you
are interested.
Second, if you are saying that you want to use the IRR as the ROI, beware
that Excel's IRR() function returns a rate per period of the cash flows. For
example, if you have monthly cash flows, IRR() returns a monthly rate.
So you might need to annualize the rate returned by IRR(), and there are two
schools of thought on how to do that. For example, if you compute a monthly
IRR, you would annualize either by simply 12*IRR(...) or by
(1+IRR(...))^12-1. The latter compounds the monthly rate. For several
reasons (too complex to get into here), I prefer the latter.
Also, bear in mind that Excel's IRR() assumes that cash flows occur at a
constant frequency (e.g. monthly). If your cash flows occur with irregular
frequency, you might want to use XIRR(). See the Help description of XIRR()
for how to access the function.