Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default XIRR versus IRR help!

Hi:

I am trying to figure out how to calculate the IRR of a series of
cashflows. There are 177 cashflows of $41,422, and the up-front cost
is $3,330,786. I tried using an IRR, but that just gives me an error I
think because there are too many cashflows. I used an XIRR, but this
compounds daily, and thus gives me a different result than an HP-12C.
Please advise!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,651
Default XIRR versus IRR help!

On Thu, 3 Sep 2009 12:26:43 -0700 (PDT), Seth M
wrote:

Hi:

I am trying to figure out how to calculate the IRR of a series of
cashflows. There are 177 cashflows of $41,422, and the up-front cost
is $3,330,786. I tried using an IRR, but that just gives me an error I
think because there are too many cashflows. I used an XIRR, but this
compounds daily, and thus gives me a different result than an HP-12C.
Please advise!


When you get the #NUM error, it usually means you need to use a guess that is
closer to your expected return than the default of 10%. (See HELP for the IRR
worksheet function).

Using a guess of 1%, I get a result of 1.0467%

However, since your cashflows are all the same, you could also use the RATE
function:


=RATE(177,41422,-330786,0)

--ron
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default XIRR versus IRR help!

On Sep 3, 3:54*pm, Ron Rosenfeld wrote:
On Thu, 3 Sep 2009 12:26:43 -0700 (PDT), Seth M
wrote:

Hi:


I am trying to figure out how to calculate the IRR of a series of
cashflows. There are 177 cashflows of $41,422, and the up-front cost
is $3,330,786. I tried using an IRR, but that just gives me an error I
think because there are too many cashflows. I used an XIRR, but this
compounds daily, and thus gives me a different result than an HP-12C.
Please advise!


When you get the #NUM error, it usually means you need to use a guess that is
closer to your expected return than the default of 10%. *(See HELP for the IRR
worksheet function).

Using a guess of 1%, I get a result of 1.0467%

However, since your cashflows are all the same, you could also use the RATE
function:

=RATE(177,41422,-330786,0)

--ron


Thanks, that helps. Is my initial attempt using the XIRR function
incorrect because of the daily compounding?
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,059
Default XIRR versus IRR help!

"Seth M" wrote:
Is my initial attempt using the XIRR function
incorrect because of the daily compounding?


No one can say for sure because you do not show how you used XIRR and IRR,
and you do not tell us exactly what the results of XIRR and IRR were.

But note that Excel XIRR returns an annualized rate, whereas Excel IRR and
RATE return the periodic rate for each cash flow, presumed to be equally
spaced, as does the HP 12C IRR.

To convert the XIRR result to a periodic rate, we need to know the frequency
of the cash flows per year. For example, if they are monthly, then:

=(1 + XIRR(...))^(1/12) - 1

where "..." are the arguments that you passed to XIRR.

Nonetheless, yes, the periodic rate derived from XIRR will probably be
slightly different than the rate returned by IRR or RATE (or the HP 12C).
As you say, this because XIRR presumes daily compounding based on the exact
dates.

For example, if you have monthly cash flows on the first of Jan, Feb, Mar,
Apr and May, IRR and RATE presume that the cash flows are equally spaced,
whereas XIRR will treat them as 31, 28 or 29, 31 and 30 days apart.

But there are other usage errors that you might have made.

First, note that in Ron's use of RATE, the initial cash flow is negative and
the subsequent cash flows are positive. The point is: net inflows and net
outflows must have opposite signs.

Since the HP 12C has the same requirement, we might assume you used IRR,
XIRR and RATE correctly in that respect.

Second, we do not really know that your cash flows are equally spaced. You
did not say. Since the HP 12C IRR presumes equally-spaced cash flows, we
might assume that they are. But that assumes that you know how to use IRR
correctly in the first place.

You know what they say about "ass-u-me" ;-).

If you have any doubts about your use of these functions, I suggest that you
post usage, especially how you used XIRR.


----- original message -----

"Seth M" wrote in message
...
On Sep 3, 3:54 pm, Ron Rosenfeld wrote:
On Thu, 3 Sep 2009 12:26:43 -0700 (PDT), Seth M
wrote:

Hi:


I am trying to figure out how to calculate the IRR of a series of
cashflows. There are 177 cashflows of $41,422, and the up-front cost
is $3,330,786. I tried using an IRR, but that just gives me an error I
think because there are too many cashflows. I used an XIRR, but this
compounds daily, and thus gives me a different result than an HP-12C.
Please advise!


When you get the #NUM error, it usually means you need to use a guess that
is
closer to your expected return than the default of 10%. (See HELP for the
IRR
worksheet function).

Using a guess of 1%, I get a result of 1.0467%

However, since your cashflows are all the same, you could also use the
RATE
function:

=RATE(177,41422,-330786,0)

--ron


Thanks, that helps. Is my initial attempt using the XIRR function
incorrect because of the daily compounding?

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,059
Default XIRR versus IRR help!

Clarification....

I wrote:
Nonetheless, yes, the periodic rate derived from XIRR
will probably be slightly different than the rate
returned by IRR or RATE (or the HP 12C). As you say,
this because XIRR presumes daily compounding based on
the exact dates.


Well, it is because XIRR computes the annualized rate based on the exact
days between the initial cash flow and the i-th cash flow.

In contrast, IRR and RATE compute the periodic rate based on the assumption
that cash flows are equally spaced.

To illustrate, the IRR and RATE results are about the same as the XIRR
result when you consider annual cash flows on Jan 1 of 2009, 2010, 2011 and
2012. Each cash flow is 365 days apart, equally spaced as IRR and RATE
assume.

In contrast, consider the annual cash flows on Jan 1 of 2008, 2009, 2010 and
2011. Now the XIRR differs from the IRR and RATE results the cash flows are
not really equally spaced; one cash flow is 366 days apart.


----- original message -----

"JoeU2004" wrote in message
...
"Seth M" wrote:
Is my initial attempt using the XIRR function
incorrect because of the daily compounding?


No one can say for sure because you do not show how you used XIRR and IRR,
and you do not tell us exactly what the results of XIRR and IRR were.

But note that Excel XIRR returns an annualized rate, whereas Excel IRR and
RATE return the periodic rate for each cash flow, presumed to be equally
spaced, as does the HP 12C IRR.

To convert the XIRR result to a periodic rate, we need to know the
frequency of the cash flows per year. For example, if they are monthly,
then:

=(1 + XIRR(...))^(1/12) - 1

where "..." are the arguments that you passed to XIRR.

Nonetheless, yes, the periodic rate derived from XIRR will probably be
slightly different than the rate returned by IRR or RATE (or the HP 12C).
As you say, this because XIRR presumes daily compounding based on the
exact dates.

For example, if you have monthly cash flows on the first of Jan, Feb, Mar,
Apr and May, IRR and RATE presume that the cash flows are equally spaced,
whereas XIRR will treat them as 31, 28 or 29, 31 and 30 days apart.

But there are other usage errors that you might have made.

First, note that in Ron's use of RATE, the initial cash flow is negative
and the subsequent cash flows are positive. The point is: net inflows
and net outflows must have opposite signs.

Since the HP 12C has the same requirement, we might assume you used IRR,
XIRR and RATE correctly in that respect.

Second, we do not really know that your cash flows are equally spaced.
You did not say. Since the HP 12C IRR presumes equally-spaced cash flows,
we might assume that they are. But that assumes that you know how to use
IRR correctly in the first place.

You know what they say about "ass-u-me" ;-).

If you have any doubts about your use of these functions, I suggest that
you post usage, especially how you used XIRR.


----- original message -----

"Seth M" wrote in message
...
On Sep 3, 3:54 pm, Ron Rosenfeld wrote:
On Thu, 3 Sep 2009 12:26:43 -0700 (PDT), Seth M

wrote:

Hi:


I am trying to figure out how to calculate the IRR of a series of
cashflows. There are 177 cashflows of $41,422, and the up-front cost
is $3,330,786. I tried using an IRR, but that just gives me an error I
think because there are too many cashflows. I used an XIRR, but this
compounds daily, and thus gives me a different result than an HP-12C.
Please advise!


When you get the #NUM error, it usually means you need to use a guess
that is
closer to your expected return than the default of 10%. (See HELP for the
IRR
worksheet function).

Using a guess of 1%, I get a result of 1.0467%

However, since your cashflows are all the same, you could also use the
RATE
function:

=RATE(177,41422,-330786,0)

--ron


Thanks, that helps. Is my initial attempt using the XIRR function
incorrect because of the daily compounding?




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,059
Default XIRR versus IRR help!

PS....

I wrote:
To convert the XIRR result to a periodic rate,
we need to know the frequency of the cash flows
per year. For example, if they are monthly, then:
=(1 + XIRR(...))^(1/12) - 1


Conversely, you can annualize the IRR or RATE result. Again, we need to
know the frequency of the cash flows per year. The following assumes
monthly.

To get an annualized rate comparable to XIRR, you could compound the monthly
rate, thus:

=(1+IRR(...))^12 - 1

where "..." represents the arguments to the IRR() function.

However, it is not uncommon to simply multiply the monthly rate, thus:

=12*IRR(...)

In that case, you might see a significant difference with the XIRR result.
And that difference is indeed due to differences in assumptions about the
compounding frequency.


----- original message -----

"JoeU2004" wrote in message
...
"Seth M" wrote:
Is my initial attempt using the XIRR function
incorrect because of the daily compounding?


No one can say for sure because you do not show how you used XIRR and IRR,
and you do not tell us exactly what the results of XIRR and IRR were.

But note that Excel XIRR returns an annualized rate, whereas Excel IRR and
RATE return the periodic rate for each cash flow, presumed to be equally
spaced, as does the HP 12C IRR.

To convert the XIRR result to a periodic rate, we need to know the
frequency of the cash flows per year. For example, if they are monthly,
then:

=(1 + XIRR(...))^(1/12) - 1

where "..." are the arguments that you passed to XIRR.

Nonetheless, yes, the periodic rate derived from XIRR will probably be
slightly different than the rate returned by IRR or RATE (or the HP 12C).
As you say, this because XIRR presumes daily compounding based on the
exact dates.

For example, if you have monthly cash flows on the first of Jan, Feb, Mar,
Apr and May, IRR and RATE presume that the cash flows are equally spaced,
whereas XIRR will treat them as 31, 28 or 29, 31 and 30 days apart.

But there are other usage errors that you might have made.

First, note that in Ron's use of RATE, the initial cash flow is negative
and the subsequent cash flows are positive. The point is: net inflows
and net outflows must have opposite signs.

Since the HP 12C has the same requirement, we might assume you used IRR,
XIRR and RATE correctly in that respect.

Second, we do not really know that your cash flows are equally spaced.
You did not say. Since the HP 12C IRR presumes equally-spaced cash flows,
we might assume that they are. But that assumes that you know how to use
IRR correctly in the first place.

You know what they say about "ass-u-me" ;-).

If you have any doubts about your use of these functions, I suggest that
you post usage, especially how you used XIRR.


----- original message -----

"Seth M" wrote in message
...
On Sep 3, 3:54 pm, Ron Rosenfeld wrote:
On Thu, 3 Sep 2009 12:26:43 -0700 (PDT), Seth M

wrote:

Hi:


I am trying to figure out how to calculate the IRR of a series of
cashflows. There are 177 cashflows of $41,422, and the up-front cost
is $3,330,786. I tried using an IRR, but that just gives me an error I
think because there are too many cashflows. I used an XIRR, but this
compounds daily, and thus gives me a different result than an HP-12C.
Please advise!


When you get the #NUM error, it usually means you need to use a guess
that is
closer to your expected return than the default of 10%. (See HELP for the
IRR
worksheet function).

Using a guess of 1%, I get a result of 1.0467%

However, since your cashflows are all the same, you could also use the
RATE
function:

=RATE(177,41422,-330786,0)

--ron


Thanks, that helps. Is my initial attempt using the XIRR function
incorrect because of the daily compounding?


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,651
Default XIRR versus IRR help!

On Thu, 3 Sep 2009 13:02:40 -0700 (PDT), Seth M
wrote:



Thanks, that helps. Is my initial attempt using the XIRR function
incorrect because of the daily compounding?


They have different purposes. XIRR returns the internal rate of return for a
schedule of cash flows that is not necessarily periodic. To calculate the
internal rate of return for a series of periodic cash flows, use the IRR
function. And if the cash flows are identical, you can use the RATE function.
--ron
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
$ versus None eh Excel Discussion (Misc queries) 1 March 29th 09 09:27 PM
XP versus Vista spreadsheet S S Excel Worksheet Functions 2 August 28th 07 09:07 PM
Excel: PC versus Mac JimMay Excel Discussion (Misc queries) 1 April 28th 06 05:51 PM
R1C1 versus A1 Stuart Grant New Users to Excel 3 October 7th 05 05:30 PM
How to plot B2:B11 versus A2:A11 [email protected] Excel Worksheet Functions 1 October 28th 04 04:33 AM


All times are GMT +1. The time now is 07:45 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"