I found the answer to my own question. I will put it here for anyone in the future searching for it.
Converting the results of IRR from a monthly periodic rate to an annualized rate is not as simple as using x12. TVM effects it as well. To accurately convert from a monthly cash flow IRR rate to annualized rate, use the following formula:
annual = ((monthly+1)^12)-1
or it could also be done with the help of an excel function:
annual = EFFECT(monthly*12,12)
To convert in the opposite direction, as might be neccessary for using NPV function use the following formula to obtain a monthly periodic discount rate from the desired annual discount rate:
monthly = ((annual+1)^(1/12))-1
or
monthly =NOMINAL(annual,12)/12
I have verified that these produce consistent results.
Now that I know this, I am thinking I should always use one of the above formulas when converting to/from an annual interest rate for PV and other formulas that need a monthly rate provided.
Bookmarks