Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.01 KB

sqr-function.md

File metadata and controls

39 lines (26 loc) · 1.01 KB
title keywords f1_keywords ms.assetid ms.date ms.localizationpriority
Sqr function (Visual Basic for Applications)
vblr6.chm1009029
vblr6.chm1009029
ce2add56-f943-9470-0caa-befda14d124a
12/13/2018
medium

Sqr function

Returns a Double specifying the square root of a number.

Syntax

Sqr(number)

The required number argument is a Double or any valid numeric expression greater than or equal to zero.

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.

See also

[!includeSupport and feedback]