LOG10 Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel LOG10 function returns the base-10 logarithm of a number — the common logarithm used in pH, decibel, and order-of-magnitude calculations.


Quick answer:
=LOG10(1000) log base 10 of 1000 = 3

Syntax

=LOG10(number)
ArgumentDescription
numberRequiredThe positive real number whose base-10 logarithm you want. Must be greater than zero.

How to use it

LOG10 answers “10 to what power gives this number?”:

=LOG10(1000) // 10^3 so = 3
=LOG10(100) // = 2
=LOG10(1) // = 0

It is identical to LOG(number) with the base left off — LOG10 just makes the intent explicit. For base e use LN, and for any other base use LOG(number, base).

Positive numbers only. LOG10 of zero or a negative number returns a #NUM! error, since the common log is undefined there.

Try it: interactive demo

Live demo

Pick a LOG10 example to see the formula and its result.

Result:

Practice workbook

📊
Download the free LOG10 practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

Is LOG10 the same as LOG without a base?
Yes. =LOG10(1000) and =LOG(1000) both return 3, since LOG defaults to base 10. LOG10 just states the intent.
What is the base-10 log of 1000?
=LOG10(1000) = 3, because 10 raised to the power 3 equals 1000.
When is the common (base-10) logarithm used?
In pH chemistry, decibel sound levels, the Richter scale, and any ‘orders of magnitude’ calculation.
Why does LOG10 return an error for some inputs?
The argument is zero or negative. The base-10 logarithm is only defined for positive numbers, so those return a #NUM! error.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: LOG · LN · EXP · POWER · SQRT