Log10
LOG10 Function¶
The LOG10 function in Excel is used to calculate the base-10 logarithm of a given number. This is the power to which the number 10 must be raised to equal the specified number.
Syntax:¶
LOG10(number)
- number: The positive numeric value for which you want to calculate the base-10 logarithm.
Examples:¶
-
=LOG10(1000)
Returns3, because10^3 = 1000. -
=LOG10(100)
Returns2, because10^2 = 100. -
=LOG10(1)
Returns0, because10^0 = 1. -
=LOG10(0.1)
Returns-1, because10^-1 = 0.1. -
=LOG10(10)
Returns1, because10^1 = 10.
Usage Notes:¶
- The number must be positive; otherwise, the function will return a
#NUM!error. - If the number is
0or a negative value, Excel will display an error as the logarithm is undefined in such cases. - The
LOG10function is particularly useful in scientific, engineering, and financial applications where logarithmic calculations are necessary, such as measuring growth rates, decibel levels, or pH values. - For logarithms with other bases, consider using the
LOGfunction with the base specified explicitly.