LOG function

Synopsis
This function returns the logarithm of a number to a specified base.
Variations
LOG(Number, Base)
Returns the logarithm of a number to a specified base.
Parameters
Number

Specifies the number from which to compute the logarithm.

Supported types: Numeric.
Base

Specifies the base of the logarithm.

Supported types: Numeric.
Returns
Returned types: Numeric.
Examples
1.

The following example returns 0.

LOG(1,10)
2.

The following example returns 2.

LOG(4,2)
3.

The following example returns 3.

LOG(8,2)