Calculates the square root of a numeric expression.
Sqr (Number)
Double
Number: A numeric expression of which you want the square root.
The square root of a number is the number which multiplied by itself produces the first number, for example, the square root of 36 is 6.
5 Invalid procedure call
Sub ExampleSqr
Dim iVar As Single
iVar = 36
MsgBox Sqr(iVar)
End Sub