• Need built-in function, not UDF

    Author
    Topic
    #501526

    I inherited a database that was originally created before Access had the Round function.

    The original designer created a UDF called Round that did not allow for entering the number of decimal points.

    I want to be able to use the built-in Round function in my VBA code, but an not sure how to reference it.

    I expected that it would be something like Application.Round() which did not work.

    Does anyone know the proper syntax for utilizing built-in functions?

    Thanks,

    Viewing 1 reply thread
    Author
    Replies
    • #1521722

      SOLVED.

      I found the answer.

      The syntax is VBA.Math.Round()

    • #1522105

      WARNING: I would test it to be see if it does the same type of round. The Built-in Round (stated with Access 2000) uses the round-to-even logic. Is that what you want?

      Syntax

      The syntax for the Round function in MS Access is:

      Round ( expression, [ decimal_places ] )

      Parameters or Arguments

      expression
      A numeric expression that is to be rounded.
      decimal_places
      Optional. It is the number of decimal places to round the expression to. If this parameter is omitted, then the Round function will return an integer.

      Applies To

      The Round function can be used in the following versions of Microsoft Access:

      Access 2013, Access 2010, Access 2007, Access 2003, Access XP, Access 2000

      Example:

      ? Round (210.67, 1)
      210.7

    Viewing 1 reply thread
    Reply To: Need built-in function, not UDF

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: