Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default IRR function when the cash flows are not in array?

I am trying to calculate IRR for a real estate investment. I have forecast
over 25 years. The problem is, I know the cash flows for each year if the
property is not sold. However, when sold I need to add the proceeds of sale
into the cash flows from that year.

Question: Can I input cashflows into the IRR function without having them
in a single column/row?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 132
Default IRR function when the cash flows are not in array?

IRR will work using array functionality to either concatenate a stream or add
stream.

Add example:
{ =IRR( ( D19:H19 + IF( D21:H21, 1000, 0 ) ) ) }
In this case, D19:H19 is an original stream (i.e. -10, 10, 10, 10, 10),
and D21:H21 is a stream of T/F (i.e. false, false, false, false, true), which
makes this entire formula equivalent to =IRR( -10, 10, 10, 10, 1000 ).

Contenate example:
{ =IRR( ( D19:H19, I19:M19 ) ) }
equivalent to =IRR( D19:M19 ) , these two (or however many) can be
anywhere, but I put them on the same line for illustrative purpose.

Let me know if you had something different in mind.

Regards,
Bill


"waradmiral1991" wrote:

I am trying to calculate IRR for a real estate investment. I have forecast
over 25 years. The problem is, I know the cash flows for each year if the
property is not sold. However, when sold I need to add the proceeds of sale
into the cash flows from that year.

Question: Can I input cashflows into the IRR function without having them
in a single column/row?

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
Using Match function with duplicate values in an array Richard Excel Worksheet Functions 3 April 22nd 23 07:45 PM
Need some comments on my Utility_Move class module. jchen Excel Worksheet Functions 0 August 21st 06 07:05 PM
Is this possible [email protected] Excel Worksheet Functions 2 June 30th 06 10:50 PM
Build an array constant with DATE function CliffD Excel Worksheet Functions 2 April 11th 06 02:51 PM
Array Function with VLOOKUP CoRrRan Excel Worksheet Functions 15 April 8th 05 05:54 PM


All times are GMT +1. The time now is 09:06 PM.

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

About Us

"It's about Microsoft Excel"