Net Present Value Question

K

ktbull

I need to be able to determine what the net present value would be for a list
of months with varying dollar amounts (For example: Jan 120000, Feb 35000,
March 55000, etc). What would the values be worth today?
 
D

David Billigmeier

You didn't specify a rate so I'll assume 5%... You can do this in 2 ways,
first use NPV():

=NPV(0.05,120000,35000,55000)

Or you can choose to understand what the NPV() formula is doing by
calculating manually:

=120000/(1.05)+35000/(1.05^2)+55000/(1.05^3)
 
K

ktbull

Thank you for your response! Very helpful.

David Billigmeier said:
You didn't specify a rate so I'll assume 5%... You can do this in 2 ways,
first use NPV():

=NPV(0.05,120000,35000,55000)

Or you can choose to understand what the NPV() formula is doing by
calculating manually:

=120000/(1.05)+35000/(1.05^2)+55000/(1.05^3)
 
W

wlfoote

David Billigmeier said:
You didn't specify a rate so I'll assume 5%... You can do this in 2 ways,
first use NPV():

=NPV(0.05,120000,35000,55000)

Or you can choose to understand what the NPV() formula is doing by
calculating manually:

=120000/(1.05)+35000/(1.05^2)+55000/(1.05^3)
 

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