ABS function: Difference between revisions

From Planfix
Jump to: navigation, search
(Created page with "{{#seo: |title=ABS |titlemode=append |keywords=planfix, function, abs number, abs, numbers |description=Absolute value of a number function }} '''The ABS() function''' — returns the absolute value (modulus) of a number. The absolute value of a number is the number without a sign. == Format == '''ABS(number)''' == Examples == {| class="wikitable" |- ! style="weight:bold;" | Formula ! style="weight:bold;" | Description ! style="weight:bold;" | Result...")
 
No edit summary
 
Line 8: Line 8:
'''The ABS() function''' — returns the absolute value (modulus) of a number. The absolute value of a number is the number without a sign.  
'''The ABS() function''' — returns the absolute value (modulus) of a number. The absolute value of a number is the number without a sign.  
   
   
== Format ==  
== Format ==  
'''ABS(number)'''  
'''ABS(number)'''  
   
   
== Examples ==  
== Examples ==  
{| class="wikitable"  
{| class="wikitable"  
|-  
|-  
Line 27: Line 27:
|}  
|}  
   
   
== Go To ==  
== Go To ==  
*[[Default functions| Formulas]]  
*[[Standard functions | Standard operators and Planfix functions]]
*[[Calculated fields]]  
*[[Calculated fields]]
*[[Reports]]
*[[Reports]]

Latest revision as of 12:20, 8 February 2024

The ABS() function — returns the absolute value (modulus) of a number. The absolute value of a number is the number without a sign.

Format

ABS(number)

Examples

Formula Description Result
ABS(2) Absolute value of the number 2 2
ABS(-2) Absolute value of the number -2 2

Go To