====== Abs ====== The Abs() function returns the **absolute value**((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.)) to a numeric value. ===== Syntax: ===== Abs() ==== Examples: ==== ^Code^Result^ |Abs('97.232')| 97.232| |Abs('-97.232')| 97.232| |Abs(363)| 363| |Abs(-363)| 363|