VBA/Excel/Access/Word/Math Functions/Log

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

Log(number) returns The natural logarithm of number.

   <source lang="vb">

Sub mathDemo9()

  Debug.Print Log(2)

End Sub

</source>
   
  


Log() Returns the natural logarithm of a number.

   <source lang="vb">

Sub mathF5()

   Debug.Print Log(2.718281828)

End Sub

</source>