Inside The Web
    Facebook Twitter Instagram
    Inside The Web
    • Office
      • Excel
      • Ms Word
      • OneDrive
      • Google Docs
      • Google Sheets
      • Google Drive
    • Email
      • Gmail
      • Outlook
      • Emal Etiquette
    • Office Etiquette
    • Productivity
    Inside The Web
    Home»Office»Excel»Here’s How to Reverse Log Base 10 in Excel

    Here’s How to Reverse Log Base 10 in Excel

    Asmi DhakalBy Asmi DhakalDecember 5, 2023 Excel 2 Mins Read

    Logarithms are used to make larger data concise, mainly for data analysis. Excel offers functions like LN, LOG, and LOG10 to generate logarithms.

    However, you will need to reverse the logarithm to get the original data when dealing with scientific calculations.

    For instance, if you have y=log⁡10(1000), the inverse would be x=10y=1000.

    reverse-of-log-base-10

    As for now, there is no dedicated function that allows you to reverse a log base 10 in Excel. However, you can use the POWER function and caret operator to reverse a logarithm with base 10.

    Use Caret Operator

    The caret operator in Excel is used to assign an exponent value when written in a formula. So, we can assign the logarithm as the exponent, with base 10 using the caret operator.

    Here are a few examples of using the caret operator to calculate reverse log base 10 in Excel:

    Log10 ValueFormula UsedOriginal Value
    1=10^A210
    4=10^A310000
    5.240367006=10^A4173927
    7.319103831=10^A520849893
    21.11721954=10^A61.30984E+21
    Use caret operator

    Use POWER Function

    FunctionData TypeSyntax
    POWERMath & Trig=POWER(number,power)

    The POWER function in Excel uses two values in its arguments.

    To calculate the reverse of log base 10, enter 10 in the number section of the POWER. Then, reference the log10 value of your number in the power section of the POWER function.

    In range A2:A11, we have the log10 values of ten different numbers. Let’s use the POWER function to reverse them into their original value.

    =POWER(10,A2) // returns the value of ten to the power of A2
    Use POWER function to calculate inverse log

    Use flash fill to apply the formula to the entire column.

    Create a Custom Function

    While there currently isn’t a function that calculates the reverse of log base 10, we can change that! Let’s create a function using VBA that calculates the antilog of a log10 value.

    Before you carry on with the steps, ensure you’ve enabled the Developer tab from the Customize Ribbons tab in Excel Options. You may need the tab to modify your code later in the future.

    1. On your keyboard, enter Alt + F11.
    2. From the menu, select Insert > Module.
      Insert Module
    3. In the window, copy-paste the following code:
    Function Rev_Log10(a As Double) As Double 'Calculate the reverse of Log10
    Dim Final As Double
    Final = 10 ^ a
    Rev_Log10 = Final
    End Function
    Create function to reverse log10
    1. On your spreadsheet, enter the following formula to calculate the reverse log10 value:
     =Rev_Log(A2)
    1. Use Flash Fill to paste the formula to the entire range.
      Custom Function to reverse log10
    Asmi Dhakal

      Asmi is a content writer specializing in MS Office. She loves writing Excel-related content to assist other users to learn their way around the program. She started using Excel when she first entered the industry as a marketing intern. Soon, she realized that learning the often-overlooked spreadsheet program was no piece of cake. In her articles, she attempts to brief out complex topics to help beginner to intermediate-level Excel users. Asmi uses Excel for everything, including creating a grocery list to managing her personal finance. She’s a bit dramatic when it comes to the Flash Fill feature; so much so that could write a eulogy out of it. When she’s not working, you’ll find her learning a new recipe, or cleaning up her mess (out of the failed recipe).

      Related Posts

      Excel By Nisha Gurung

      How to Compare Two Columns in Excel Using VLOOKUP

      Excel By Nisha Gurung

      How to Share Excel Files with Multiple Users

      Excel By Nisha Gurung

      How to Filter Based on a List in Excel

      Add A Comment
      Table of ContentsToggle Table of ContentToggle
      • Use Caret Operator
      • Use POWER Function
      • Create a Custom Function
      • Home
      • About Us
      • Privacy Policy
      © 2025 Inside The Web

      Type above and press Enter to search. Press Esc to cancel.