Results 1 to 7 of 7
  1. #1
    gpierce9 is offline Novice
    Windows 10 Access 2016
    Join Date
    Jan 2018
    Location
    NJ
    Posts
    19

    NPV Net Preset Value - not available in Access ??

    3/27/2018 Hi. I made a mini Access file with sample data, figuring I only need to learn an NPV formula.
    Just like in Excel.

    But NPV is not available in Access. That is what I read.


    Is that true? I use Access 2010. Thanks. Glen

  2. #2
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,549
    prob. true...never seen it.
    Youd have to build your own in a query.

  3. #3
    isladogs's Avatar
    isladogs is offline MVP / VIP
    Windows 10 Access 2010 32bit
    Join Date
    Jan 2014
    Location
    Somerset, UK
    Posts
    6,129
    NPV is available in Access though I've never needed to use it
    It's one of the built in functions you can run using the builder
    Look in the financial group
    Last edited by isladogs; 03-27-2018 at 04:06 AM.
    Colin Riddington, Access MVP, Website, email
    The more I learn, the more I know I don't know. When I know I don't know, I keep quiet!

  4. #4
    orange's Avatar
    orange is offline Moderator
    Windows 10 Access 2010 32bit
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,850
    Here' an example based on Ridders comment. I've been using Access for many years and must admit not only have I not used this, but didn't realize it existed.

    Code:
    '---------------------------------------------------------------------------------------
    ' Procedure : testNPV
    ' Author    : Jack
    ' Date      : 27-Mar-18
    ' Purpose   : Found and tested from
    ' https://support.office.com/en-us/article/npv-function-96bc0897-9b6e-46e0-937f-13be698d0023
    '---------------------------------------------------------------------------------------
    ' NOTES: showing an M$oft function for NPV (net present value)
    '
    Sub testNPV()
              Dim Fmt, Guess, RetRate, NetPVal, Msg
              Static Values(5) As Double    ' Set up array.
    10        Fmt = "###,##0.00"    ' Define money format.
    20        Guess = 0.1   ' Guess starts at 10 percent.
    30        RetRate = 0.0625   ' Set fixed internal rate.
    40        Values(0) = -70000    ' Business start-up costs.
              ' Positive cash flows reflecting income
              ' for four successive years.
    50        Values(1) = 22000: Values(2) = 25000
    60        Values(3) = 28000: Values(4) = 31000
              ' Calculate net present value.
    70        NetPVal = NPV(RetRate, Values())
    80        Msg = "The net present value " & _
                    "of these cash flows is "
    90        Msg = Msg & Format(NetPVal, Fmt) & "."
              'display message
    100       MsgBox Msg, vbOKOnly, "Example of Net Present Value from M$oft"
    End Sub

  5. #5
    isladogs's Avatar
    isladogs is offline MVP / VIP
    Windows 10 Access 2010 32bit
    Join Date
    Jan 2014
    Location
    Somerset, UK
    Posts
    6,129
    I'd never heard of it either.
    I just looked in the list of functions
    One of many I've never had a need to use
    Colin Riddington, Access MVP, Website, email
    The more I learn, the more I know I don't know. When I know I don't know, I keep quiet!

  6. #6
    gpierce9 is offline Novice
    Windows 10 Access 2016
    Join Date
    Jan 2018
    Location
    NJ
    Posts
    19
    Quote Originally Posted by ridders52 View Post
    NPV is available in Access though I've never needed to use it
    It's one of the built in functions you can run using the builder
    Look in the financial group
    thanks glen

  7. #7
    gpierce9 is offline Novice
    Windows 10 Access 2016
    Join Date
    Jan 2018
    Location
    NJ
    Posts
    19
    Thanks. the code looks way over my head. but thanks. glen

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 9
    Last Post: 02-21-2018, 12:06 PM
  2. Restrict data entry to preset list
    By chrisfl in forum Forms
    Replies: 2
    Last Post: 06-28-2013, 01:16 PM
  3. Emailing a preset email draft from Access
    By jbickl in forum Access
    Replies: 2
    Last Post: 01-13-2012, 06:22 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums