VBA/Excel/Access/Word/Math Functions/Abs

Материал из VB Эксперт
Версия от 12:46, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Abs(number) returns The absolute value of number-the unsigned magnitude of the number.

 
Sub mathDemo1()
   Debug.Print Abs(-100)
End Sub



Abs() Returns the absolute value of a number.

 
Sub mathF()
    Debug.Print Abs(-10)
End Sub