VBA/Excel/Access/Word/Math Functions/Log — различия между версиями

Материал из VB Эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 12:46, 26 мая 2010

Log(number) returns The natural logarithm of number.

 
Sub mathDemo9()
   Debug.Print Log(2)
End Sub



Log() Returns the natural logarithm of a number.

 
Sub mathF5()
    Debug.Print Log(2.718281828)
End Sub