XIRR formula

Amds

New Member
Joined
Mar 22, 2002
Messages
22
I have the following formula :-

=ROUND((XIRR({-198567.26,4750,204032},{36257,36295,37315},0.1)*100),2)

How can it be re-written so that the figures 204032 and 37315 can be replaced by cell refs ?
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
On 2002-03-23 00:16, Amds wrote:
I have the following formula :-

=ROUND((XIRR({-198567.26,4750,204032},{36257,36295,37315},0.1)*100),2)

How can it be re-written so that the figures 204032 and 37315 can be replaced by cell refs ?

Constants of a constant array cannot be variablized, that is, replaced with cell refs. It seems you want to experiment with defferent values. I'd suggest placing the values in your constant arrays in columnar ranges of their own, which you can change at will:


=ROUND((XIRR(A2:A4,B2:B4,0.1)*100),2)

where A2:A4 houses the values

-198567.26
4750
204032

and B2:B4 the date values

36257
36295
37315

formatted as date.
 
Upvote 0
Thanks.
That's what I thought ("Constants of a constant array cannot be variablized, that is, replaced with cell refs") .... but was hoping it was possible.
I suppose I'll just either have to rearrange my data so as to be able to use cell refs for all, or live with all hard values in the formula.
 
Upvote 0

Forum statistics

Threads
1,213,539
Messages
6,114,221
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top