Syntax 

Sqr(Num)


Group 

Math 


Description 

Return the square root. 


Parameters

Description

Num 

Return the square root of this numeric value. 


Example

Sub Main

    Debug.Print Sqr(9) ' 3

End Sub