Sqr function

Category: Math

Summary

Square root.

Syntax

Returns a Double specifying the square root of a number.

Example

Example
This example uses the Sqr function to calculate the square root of a number.
Dim MySqr
MySqr = Sqr(4) ' Returns 2.
MySqr = Sqr(23) ' Returns 4.79583152331272.
MySqr = Sqr(0) ' Returns 0.
MySqr = Sqr(-4) ' Generates a run-time error.

Microsoft Support Page

https://learn.microsoft.com/en-us/office/vba/language/reference/user-interface-help/sqr-function

Back to Functions