Abs: Difference between revisions
Jump to navigation
Jump to search
Added the math category. |
Changing category name. |
||
Line 27: | Line 27: | ||
[[Category:Language Reference]] | [[Category:Language Reference]] | ||
[[Category: | [[Category:Math]] |
Revision as of 02:05, 7 August 2012
ABS(number)
Description
ABS returns the absolute value, or unsigned magnitude, of a numeric expression. The required parameter, number, is any valid numeric expression. If number is NULL, ABS returns NULL.
Example
REM ABS Example 'ABS returns the absolute value of a number. PRINT "ABS(-2) = " & ABS(-2) PRINT "ABS(2) = " & ABS(2)
Output
ABS(-2) = 2 ABS(2) = 2
Related Items