[Fixed!]: Excel Formula Not Showing Correct Result (8 Methods)

We have an Excel worksheet that has the information about the revenues of different outlets of a chain restaurant for January and February. We will use this workbook to show you how to fix an Excel formula not showing the correct result.

Excel Formula Not Showing Correct Result


Fix 1 – Changing Formula Calculation to Automatic from Manual in Excel

Steps:

  • Click on File.

Change If the Formula Calculation to Automatic from Manual in Excel

  • Click on Options.

Change If the Formula Calculation to Automatic from Manual in Excel

  • Another window will appear. Click on the Formula tab from the window.
  • Select Automatic for Workbook Calculation option under the Calculation options
  • Click on OK.

Change If the Formula Calculation to Automatic from Manual in Excel

Alternative 1:

  • Click on the Calculation Options drop-down under Formulas.
  • Select Automatic from the drop-down list.

Change If the Formula Calculation to Automatic from Manual in Excel

Re-Calculating:

  • Select all the cells containing the formulas.
  • Click on Calculate Now under the Formula. The formula will then calculate all the cells and returns the updated result.

Change If the Formula Calculation to Automatic from Manual in Excel

Read More: Excel Formulas Not Calculating Automatically


Fix 2 – Turning Off the Show Formula Button in Excel to Display the Correct Result

Steps:

  • Click on the Show Formulas option under Formulas.

Turn Off the Show Formula Button in Excel to Show Correct Result

  • The Show Formulas option is not selected anymore, and the Excel formulas are showing the correct result in the Total (Outlet) column.

Turn Off the Show Formula Button in Excel to Show Correct Result


Fix 3 – Changing the Format of the Excel Formula to Number from Text

Steps:

  • The cells in the Total (Outlet) column are formatted Text instead of Number and the formulas are shown as cell values instead of the results.

Change the Format of the Formula to Number from Text

  • Select all the cells of the January, February, and Total (Outlet) columns.
  • Change the cell format to Number.

Change the Format of the Formula to Number from Text

  • Click on cell E5 and press Enter.

Change the Format of the Formula to Number from Text

  • Drag the fill handle down to change the format to number for the rest of the cells in the Total (Outlet) column.

Change the Format of the Formula to Number from Text

  • Here’s the result.

excel formula not showing correct result

Read More: [Fixed!] Formula Not Working in Excel and Showing as Text


Fix 4 – Checking for a Circular Reference in Excel Formula

Steps:

  • The image below shows that cell E5 in the Total (Outlet) column is showing zero (0) instead of results. The formula in that cell has included the cell itself.
  • If we look at the sheet tab, we will see that it is showing a circular reference indicating that cell E5 contains a formula that includes the cell itself.

Check If there Is Any Circular Reference in Formula

  • Change the formula to =SUM(C5:D5) to remove the cell E5 from the formula that contains it.

excel formula not showing correct result

  • Drag the fill handle down to remove the circular references from each cell in the Total (Outlet) column.

Check If there Is Any Circular Reference in Formula

  • The formula of each of the cells in the column is now showing the correct result.

Check If there Is Any Circular Reference in Formula


Fix 5 – Checking If the Equal Sign Is Missing in a Formula

Steps:

  • The image below shows that Excel is showing the formula as the cell values in the Total (Outlet) The formulas do not have equal signs in front of them. So, Excel considers them as texts.

excel formula not showing correct result

  • Insert an equal sign (=) in front of the formula in cell E5. The cell references in the SUM formula are colored in blue indicating that formula is working.

Check If the Equal Sign Is Missing in Formula

  • The formula in cell E5 is showing the correct result.

  • Drag the fill handle down to insert an equal sign (=) in front of each cell in the Total (Outlet).

excel formula not showing correct result

  • The formula of each of the cells in the column is now showing the correct result.

Check If the Equal Sign Is Missing in Formula

Read More: [Fixed!] SUM Formula Not Working in Excel


Fix 6 – Checking for Hidden Rows or Columns

Steps:

  • The image below shows that the formulas in the cells under the Total (Outlet) column are not showing the correct result. The formula includes column E but there is no column E in the worksheet as you can see. But if you look carefully, you will see that there is a small gap between columns D and F. The gap indicates that there is a hidden column and that column is column E. We will now unhide column E.

Find Out If There Is Any Hidden Rows or Columns in Excel

  • Select columns D and F. Hidden column E is between these two columns.
  • Go to Home then to Format.
  • Choose Hide & Unhide and select Unhide Columns.

excel formula not showing correct result

  • The column E is visible.

Find Out If There Is Any Hidden Rows or Columns in Excel

  • Press Enter, and all the formulas in Total (Outlet) are showing the correct result.

excel formula not showing correct result


Fix 7 – Checking for Deleted Rows or Columns Leading to the #REF! Error

Steps:

  • The image below shows that formulas in the Tax Amount column throw #REF! errors as they do not have tax rates to calculate the tax amounts. That happens because we have accidentally deleted the column that has the tax rates.

Find Out If There Is Any Hidden Rows or Columns in Excel

  • Select cell C5 and right-click on it to bring up the context menu.
  • Select Insert from that menu.

excel formula not showing correct result

  • Another window titled Insert will appear. Select the entire column option from that window.
  • Click on OK.

Find Out If There Is Any Hidden Rows or Columns in Excel

  • A new column will appear. We will title it Tax Rate.
  • Rewrite the formula in cell E5 like below.
=C5*D5

Find Out If There Is Any Hidden Rows or Columns in Excel

  • Upon pressing Enter, we will see that the formula in cell E5 is showing the correct result.
  • Drag the fill handle down to apply the change to each formula in the Total (Outlet).

excel formula not showing correct result

  • Here’s the result.

Find Out If There Is Any Hidden Rows or Columns in Excel


Fix 8 – Placing the Parentheses Correctly

Steps:

  • The image below shows that the formula in cell E5 is not showing the correct total tax amount as we did not insert parentheses around the cell references.

excel formula not showing correct result

  • Rewrite the formula like below to insert parentheses around the cell references in the correct way.
=(C5+D5)*10%
  • Repeat for the rest of the formulas in the Total Tax Amount.

Correctly Place Parenthesis in Excel Formula


Quick Notes

  • You should include all the arguments required for a specific formula to calculate the result. You do not have to worry about the optional arguments. A formula still can calculate the result without the optional ones.
  • While nesting one formula inside another, you should not nest more than 64 functions inside a single formula.
  • If you enclose a number in double-quotes, Excel will consider it as a text instead of a number.
  • While entering or inserting numbers in an Excel formula, you should not use any sort of formatting. Remember that, a comma (,) is used in an Excel function to separate the arguments of the function. A dollar sign ($) is used to make a cell reference absolute.
  • You should separate the arguments of an Excel function with the correct separator. Users in North America should separate the arguments using the comma (,) while those in Europe should do that using the semi-colon (;). Go to Control Panel > Region and Language > Additional Settings which character is set as List Separator and use that character to separate the arguments of a function.
  • When referring to other worksheets or workbooks with titles that contain spaces or non-alphabetic characters, use single quotation marks around the name of that worksheet or workbooks. Reference to another sheet,
=SUM(‘Tax Calculation’!B2:B10)
  • Reference to another workbook:
=SUM(‘[Restaurant Sales.xlsx]Tax Calculation’!B2:B10)
  • When referring to a closed workbook that is closed, you must include the name of that workbook along with the full path of that workbook. For example,
=SUM(‘E:\Reports\[Restaurant Sales.xlsx]Tax Calculation’!B2:B10)

Download the Practice Workbook

Related Articles


<< Go Back To Formulas not Working in Excel | Excel Formulas | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
ASM Arman
ASM Arman

Abu Saleh Arman is a Marine engineer and Excel & VBA expert. He loves programming with VBA. He finds VBA programming a time-saving tool to manipulate data, handle files, and interact with the internet. He is very interested in Python, MATLAB, PHP, Deep Neural Networks, and Machine Learning, showcasing his diverse skill set. Arman holds a B.Sc in Naval Architecture & Marine Engineering from BUET, Bangladesh. However, he switched to a content developer, where he writes technical content... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo