XIRR in Access Form

G

Guest

Is it possible to calculate XIRR in Access using the results from a subform?
Specifically, I have a database with cashflow information related to
different investments and these cashflows show up on a subform within the
database. I would like to be able to present the users with the IRR of these
cashflows and related dates. Is this possible? I am not deeply skilled in
VBA
 
D

Damon Heron

How about this in Access?
Check help file for IRR. Here is their example:
Dim Guess, Fmt, RetRate, Msg
Static Values(5) As Double ' Set up array.
Guess = .1 ' Guess starts at 10 percent.
Fmt = "#0.00" ' Define percentage format.
Values(0) = -70000 ' Business start-up costs.
' Positive cash flows reflecting income for four successive years.
Values(1) = 22000 : Values(2) = 25000
Values(3) = 28000 : Values(4) = 31000
RetRate = IRR(Values(), Guess) * 100 ' Calculate internal rate.
Msg = "The internal rate of return for these five cash flows is "
Msg = Msg & Format(RetRate, Fmt) & " percent."
MsgBox Msg ' Display internal return rate.
to see it work just put it as the code on a click event for a cmd button.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top