[Table of Contents] [docx version]
SpreadsheetML Reference Material - Table of Contents
LOG10 ( x )
Description: Computes the base-10 logarithm of x.
Arguments:
Name |
Type |
Description |
number |
The positive real number for which the logarithm is being computed. |
Return Type and Value: number – The base-10 logarithm of x.
However, if x is zero or negative, #NUM! is returned.
[Example:
LOG10(86) results in 1.934498451
LOG10(10) results in 1
LOG10(1E5) results in 5
LOG10(10^5) results in 5
end example]