VBA/Excel/Access/Word/Math Functions/Sgn — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 12:46, 26 мая 2010
Содержание
Sgn(0) returns 0
Sub mathDemo13()
Debug.Print Sgn(0)
End Sub
Sgn(-7) returns -1
Sub mathDemo12()
Debug.Print Sgn(-7)
End Sub
Sgn(number) returns -1 if number is negative, 0 if number is 0, 1 if number is positive.
Sub mathDemo11()
Debug.Print Sgn(7)
End Sub
Sgn() Returns the sign of a number.
Sub mathF7()
Debug.Print Sgn(-9)
End Sub