Inhaltsverzeichnis



Abs

The Abs() function returns the absolute value1) to a numeric value.

Syntax:

Abs(<Zahl>)

Examples:

CodeResult
Abs('97.232') 97.232
Abs('-97.232') 97.232
Abs(363) 363
Abs(-363) 363
1)
The numerical value of a real number without regard to its sign. For example, the absolute value of -4 (written │-4│) is 4. Also called numerical value.