Thread: square root
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
bst[_2_] bst[_2_] is offline
external usenet poster
 
Posts: 7
Default square root

On Fri, 27 Jun 2008 18:35:01 -0700, PieIzq2 wrote:

Hi everyone, I am trying to create a program in Excel, but the Imsqrt
function is not recognized by VBA in Excel 2007. Is there a different
way in calculating the square root in VBA.


Sqr Function 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.

hth
bst