Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using Match function with duplicate values in an array | Excel Worksheet Functions | |||
Need some comments on my Utility_Move class module. | Excel Worksheet Functions | |||
Is this possible | Excel Worksheet Functions | |||
Build an array constant with DATE function | Excel Worksheet Functions | |||
Array Function with VLOOKUP | Excel Worksheet Functions |