Programming Reference Manual
 
Syntax
 
Sqr(Num)
 
Description
Return the square root.
 
Parameter
Description
Num
Return the square root of this numeric value.
See Also
 
Example
 
Sub Main
Debug.Print Sqr(9) ' 3
End Sub