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

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

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>