Log
Syntax:
Function Log(ByVal Value As Double) As Double
Parameters:
Name Type Description
Value
Double
Remarks:
The Log method returns the base-10 logarithm of a number. The Log function uses a base of 10. If another base is needed, use Log(x)/ Log(b) formula where b is the base.
Examples:
In the following code example, x equals 1.397940 and y equals 0.6989700.
x = LOG(25) y = LOG(5)