VBA/Excel/Access/Word/Math Functions/Sqr — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 12:46, 26 мая 2010
Sqr(number) returns The square root of number. If number is negative, VBA gives a runtime error.
Sub mathDemo15()
Debug.Print Sqr(9)
End Sub
Sqr() Returns the square root of a number.
Sub mathF9()
Debug.Print Sqr(9)
End Sub