SQRT function: Difference between revisions
From Planfix
								
												
				 (Created page with "{{#seo:  |title=Function SQRT  |titlemode=append  |keywords=planfix, function, square root, root  |description=Function SQRT  }}  '''SQRT()''' — returns the positive value of the square root.   == Format ==  '''SQRT(number)'''     == Examples ==  {| class="wikitable"  |-  ! style="weight:bold;" | Formula  ! style="weight:bold;" | Description  ! style="weight:bold;" | Result  |-  |SQRT(16)  |Square root of number 16  |4  |-  |SQRT(-16)  |Square root of number -16  |ERRO...")  | 
				No edit summary  | 
				||
| Line 9: | Line 9: | ||
'''SQRT(number)'''    | '''SQRT(number)'''    | ||
== Examples ==    | == Examples ==    | ||
{| class="wikitable"    | {| class="wikitable"    | ||
Latest revision as of 14:21, 15 February 2024
SQRT() — returns the positive value of the square root.
Format
SQRT(number)
Examples
| Formula | Description | Result | 
|---|---|---|
| SQRT(16) | Square root of number 16 | 4 | 
| SQRT(-16) | Square root of number -16 | ERROR | 
| SQRT(ABS(-16)) | Using the ABS function, get the absolute value of -16, then find the square root | 4 |