Abs: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Added the math category. |
||
Line 27: | Line 27: | ||
[[Category:Language Reference]] | [[Category:Language Reference]] | ||
[[Category:Language Reference | [[Category:Language Reference Math]] |
Revision as of 15:15, 5 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