Daffodil Computers Ltd.

Office Suite Tutorial => Microsoft Office Access => Topic started by: bbasujon on August 15, 2012, 05:34:13 PM

Title: Microsoft Access Function Library: Abs()
Post by: bbasujon on August 15, 2012, 05:34:13 PM
Function: Abs()

Purpose: The Abs() function returns the absolute value of any numeric expression provided to it as an argument.

Usage: Abs(expression)

Returns: Absolute value (unsigned magnitude) of expression

Examples and Special Cases

    Abs(-10) = 10
    Abs(10) = 10
    Abs(0) = 0
    Abs(NULL) = NULL
    Abs(uninitialized variable) = 0