Formulas do not work in excel

If you work with formulas in Excel, sooner or later you will encounter the problem where Excel formulas don’t work at all (or give the wrong result).

While it would have been great had there been only a few possible reasons for malfunctioning formulas. Unfortunately, there are too many things that can go wrong (and often does).

But since we live in a world that follows the Pareto principle, if you check for some common issues, it’s likely to solve 80% (or maybe even 90% or 95% of the issues where formulas are not working in Excel).

And in this article, I will highlight those common issues that are likely the cause of your Excel formulas not working.

So let’s get started!

Incorrect Syntax of the Function

Let me start by pointing out the obvious.

Every function in Excel has a specific syntax – such as the number of arguments it can take or the type of arguments it can accept.

And in many cases, the reason your Excel formulas are not working or gives the wrong result could be an incorrect argument (or missing arguments).

For example, the VLOOKUP function takes three mandatory arguments and one optional argument.

If you provide a wrong argument or don’t specify the optional argument (where it’s needed for the formula to work), it’s going to give you a wrong result.

For example, suppose you have a dataset as shown below where you need to know the score of Mark in Exam 2 (in cell F2).

Formula not working Dataset to get score

If I use the below formula, I will get the wrong result, because I am using the wrong value in the third argument (one that asks for Column Index number).

=VLOOKUP(A2,A2:C6,2,FALSE)

VLOOKUP function giving wrong result

In this case, the formula calculates (as it returns a value), but the result is incorrect (instead of score in Exam 2, it gives the score in Exam 1).

Another example where you need to be cautious about the arguments is when using VLOOKUP with the approximate match.

Since you need to use an optional argument to specify where you want VLOOKUP to do an exact match or an approximate match, not specifying this (or using the wrong argument) can cause issues.

Below is an example where I have the marks data for some students and I want to extract marks in Exam 1 for the students in the table on the right.

Dataset for VLOOKUP exact match

When I use the below VLOOKUP formula it gives me an error for some names.

=VLOOKUP(E2,$A$2:$C$6,2)

Wrong formula result due to missing argument

This happens as I have not specified the last argument (which is used to determine whether to do an exact match or approximate match). When you don’t specify the last argument, it automatically does an approximate match by default.

Since we needed to do an exact match in this case, the formula returns an error for some names.

While I have taken the example of the VLOOKUP function, in this case, this is something that can be applicable for many Excel formulas that have optional arguments as well.

Also read: Identify Errors Using Excel Formula Debugging

Extra Spaces Causing Unexpected Results

Leading, trailing spaces are hard to find out and can cause issues when you use a cell that has these in formulas.

For example, in the below example, if I try to use VLOOKUP to fetch the score for Mark, it gives me the #N/A error (the not available error).

Formula giving a NA error

While I can see that the formula is correct and the name ‘Mark’ is clearly there is the list, what I can not see is that there is a trailing space in the cell that has the name (in cell D2).

Extra Space in the lookup value

Excel doesn’t consider the content of these two cells the same and therefore it considers it a mismatch when fetching the value using VLOOKUP (or it could be any other lookup formula).

To fix this issue, you need to remove these extra space characters.

You can do this by using any of the following methods:

  1. Clean the cell and remove any leading/trailing spaces before using it in formulas
  2. Use the TRIM function within the formula to make sure any leading/trailing/double spaces are ignored.

In the above example, you can use the below formula instead to make sure it works.

=VLOOKUP(TRIM(D2),$A$2:$B$6,2,0)

While I have taken the VLOOKUP example, this is also a common issue when working with TEXT functions.

For example, if I use the LEN function to count the total number of characters in a cell, if there are leading or trailing spaces, these would also be counted and give the wrong result.

Take away / How to Fix: If possible, clean your data by removing any leading/trailing or double spaces before using these in formulas. If you can not change the original data, use the TRIM function in formulas to take care of this.

Using Manual Calculation Instead of Automatic

This one setting can drive you crazy (if you don’t know it’s what’s causing all the issues).

Excel has two calculation modes – Automatic and Manual.

By default, the automatic mode is enabled, which means that in case I use a formula or make any changes in the existing formulas, it automatically (and instantly) makes the calculation and gives me the result.

This is the setting we are all used to.

In the automatic setting, whenever you make any change in the worksheet (such as entering a new formula to even some text in a cell), Excel automatically recalculates everything (yes, everything).

But in some cases, people enable the manual calculation setting.

This is mostly done when you have a heavy Excel file with a lot of data and formulas. In such cases, you may not want Excel to recalculate everything when you make small changes (as it may take a few seconds or even minutes) for this recalculation to complete.

If you enable manual calculation, Excel will not calculate unless you force it to.

And this may make you think that your formula is not calculating.

All you need to do in this case is either set the calculation back to automatic or force a recalculation by hitting the F9 key.

Below are the steps to change the calculation from manual to automatic:

  1. Click the Formula tabFormulas tab
  2. Click on Calculation Options
  3. Select AutomaticSet the calculation to automatic

Important: In case you’re changing the calculation from manual to automatic, it’s a good idea to create a backup of your workbook (just in case this makes your workbook hang or makes Excel crash)

Take away / How to Fix: If you notice that your formulas are not giving the expected result, try something simple in any cell (such as adding 1 to an existing formula. Once you identify the issue as the one where calculation mode needs to be changed, do a force calculation by using F9.

Deleting Rows/Column/Cells Leading to #REF! Error

One of the things that can have a devastating effect on your existing formulas in Excel is when you delete any row/column which has been used in calculations.

When this happens, sometimes, Excel adjusts the reference itself and makes sure that the formulas are working fine.

And sometimes… it can not.

Thankfully, one clear indication that you get when formulas break on deleting cells/rows/columns is the #REF! error in the cells. This is a reference error that tells you that there is some issue with the references in the formula.

Let me show you what I mean by using an example.

Below I have used the SUM formula to add the cells A2:A6.

Formula to add cells

Now, if I delete any of these cells/rows, the SUM formula will return a #REF! error. This happens because when I deleted the row, the formula doesn’t know what to reference now.

Ref error when a row is deleted

You can see that the third argument in the formula has become #REF! (which earlier referred to the cell that we deleted).

Take away / How to Fix: Before you delete any data that is being used in formulas, make sure there are no errors after the deletion. It’s also recommended that you create a backup of your work regularly to make sure you always have something to fall back on.

Incorrect Placement of Parenthesis (BODMAS)

As your formulas start to get bigger and more complex, it’s a good idea to use parenthesis to be absolutely clear of what part belongs together.

In some cases, you may have the parenthesis at the wrong place, which can either give you a wrong result or an error.

And in some cases, it’s recommended to uses parenthesis to make sure the formula understands what needs to be grouped and calculated first.

For example, suppose you have the following formula:

=5+10*50

In the above formula, the result is 505 as Excel first does the multiplication and then the addition (as there is an order of precedence when it comes to operators).

If you want it to first do the addition and then the multiplication, you need to use the below formula:

=(5+10)*50

In some cases, the order of precedence may work for you, but it’s still recommended that you use the parenthesis to avoid any confusion.

Also, in case you’re interested, below is the order of precedence for various operators often used in formulas:

Operator Description Order of Precedence
: (colon) Range 1
(single space) Intersection 2
, (comma) union 3
Negation (as in –1) 4
% Percentage 5
^ Exponentiation 6
* and / Multiplication & division 7
+ and – Addition & subtraction 8
& Concatnenation 9
= < > <= >= <> Comparison 10

Take away / How to Fix: Always use parenthesis to avoid any confusion, even if you know the order of precedence and are using it correctly. Having parenthesis makes it easier to audit formulas.

Incorrect Use of Absolute/Relative Cell References

When you copy and paste formulas in Excel, it automatically adjusts the references. Sometimes, this is exactly what you want (mostly when you’re copy-pasting formulas down the column), and sometimes you don’t want this to happen.

An absolute reference is when you fix a cell reference (or range reference) so that it doesn’t change when you copy and paste formulas, and a relative reference is one that changes.

You can read more about absolute, relative, and mixed references here.

You may get an incorrect result in case you forget to change the reference to an absolute one (or vice versa). This is something that happens quite often to me when I am using lookup formulas.

Let me show you an example.

Below I have a dataset where I want to fetch the score in Exam 1 for the names in column E (a simple VLOOKUP use case)

Dataset for incorrect references

Below is the formula that I use in cell F2 and then copies to all the cells below it:

=VLOOKUP(E2,A2:B6,2,0)

Formula giving erorr because references are not locked

As you can see that this formula gives an error in some cases.

This happens because I haven’t locked the table array argument – it’s A2:B6 in cell F2, while it should have been $A$2:$B$6

By having these dollar signs before the row number and column alphabet in a cell reference, I am forcing  Excel to keep these cell references fixed. So, even when I copy this formula down, the table array will continue to refer to A2:B6

Pro Tip: To convert a relative reference to an absolute one, select that cell reference within the cell, and press the F4 key. You would notice that it changes by adding the dollar signs. You can continue to press F4 until you get the reference you want.

Incorrect Reference to Sheet / Workbook Names

When you refer to other sheets or workbooks in a formula, you need to follow a specific format. And in case the format is incorrect, you will get an error.

For example, if I want to refer to cell A1 in Sheet2, the reference would be =Sheet2!A1 (where there is an exclamation sign after the sheet name)

And in case there are multiple words in the sheet name (let’s say it’s Example Data), the reference would be =’Example Data’!A1 (where the name is enclosed in single quotes followed by an exclamation sign).

In case you’re referring to an external workbook (let’s say you’re referring to cell A1 in ‘Example Sheet’ in the workbook named ‘Example Workbook’), the reference will be as shown below:

='[Example Workbook.xlsx]Example Sheet'!$A$1

And in case you close the workbook, the reference would change to include the entire path of the workbook (as shown below):

='C:UserssumitDesktop[Example Workbook.xlsx]Example Sheet'!$A$1

In case you end up changing the name of the workbook or the worksheet to which the formula refers to, it’s going to give you a #REF! error.

Also read: How to Find External Links and References in Excel

Circular References

A circular reference is when you refer (directly or indirectly) to the same cell where the formula is being calculated.

Below is a simple example, where I use the SUM formula in cell A4 while using it in the calculation itself.

=SUM(A1:A4)

Although Excel shows you a prompt letting you know about the circular reference, it will not do it for every instance. And this may give you the wrong result (without any warning).

In case you suspect circular reference in play, you can check which cells have it.

To do this, click the Formula tab and in the ‘Formula Auditing’ group, click on the Error Checking drop-down icon (the small downward pointing arrow).

Hover the cursor over the Circular reference option and it will show you the cell that has the circular reference issue.

finding circular reference error in the worksheet

Cells Formatted as Text

If you find yourself in a situation where as soon as you type the formula as hit enter, you see the formula instead of the value, it’s a clear case of the cell being formatted as text.

Cell formatted as text

When a cell is formatted as text, it considers the formula as a text string and shows it as is.

It doesn’t force it to calculate and give the result.

And it has an easy fix.

  1. Change the format to ‘General’ from ‘Text’ (it’s in Home tab in the Numbers group)
  2. Go to the cell that has the formula, get into the edit mode (use F2 or double click on the cell) and hit Enter

In case the above steps don’t solve the problem, another thing to check is whether the cell has an apostrophe at the beginning. A lot of people add an apostrophe to convert formulas and numbers to text.

If there is an apostrophe, you can simply remove it.

Text Automatically Getting Converted into Dates

Excel has this bad habit of converting that looks like a date into an actual date. For example, if you enter 1/1, Excel would convert it to 01-Jan of the current year.

In some cases, this may be exactly what you want, and in some cases, this may work against you.

And since Excel stores date and time values as numbers, as soon as you enter 1/1, it converts it into a number representing the January 1 of the current year. In my case, when I do this, it converts it into the number 43831 (for 01-01-2020).

This could mess with your formulas if you’re using these cells as an argument in a formula.

How to fix this?

Again, we don’t want Excel to automatically pick the format for us, so we need to clearly specify the format ourselves.

Below are the steps to change the format to text so that it doesn’t automatically convert text to dates:

  1. Select the cells/range where you want to change the format
  2. Click on the Home tabClick the home tab
  3. In the Number group, click on the Format drop-down
  4. Click on TextSelect text as the formatting

Now, whenever you enter anything in the selected cells, it would be considered as text, and not changed automatically.

Note: The above steps would only work for data entered after the formatting has been changed. It will not change any text that has been converted to date before you made this formatting change.

Another example where this can be really frustrating is when you enter a text/number that has leading zeros. Excel automatically removes these leading zeros as it considers these useless. For example, if you enter 0001 in a cell, Excel will change it to 1. In case you want to keep these leading zeros, use the steps above.

Hidden Rows/Columns Can Give Unexpected Results

This is not a case of formula giving you the wrong result but of using the wrong formula.

For example, suppose you have a dataset as shown below and I want to get the sum of all the visible cells in column C.

Dataset for formulas not working

In cell C12, I have used the SUM function to get the total sale value for all these given records.

SUM formula to get the sum of the column

So far so good!

Now, I apply a filter to the item column to only show the records for Printer sales.

Same SUM value even after the filer is applied

And here is the problem – the formula in cell C12 still shows the same result – i.e., the sum of all the records.

As I said, the formula is not giving the wrong result. In fact, the SUM function is working just fine.

The issue is that we have used the wrong formula here.

SUM function can not account for the filtered data and give you the result for all the cells (hidden or visible). If you only want to get the sum/count/average of visible cells, use SUBTOTAL or AGGREGATE functions.

Key takeaway – Understand the correct use and limitations of a function in Excel.

These are some of the common causes that I have seen where your Excel formulas may not work or give unexpected or wrong results. I am sure there are many more reasons for an Excel formula to not work or update.

In case you know of any other reason (maybe something that irks you often), let me know in the comments section.

Hope you found this tutorial useful!

You may also like the following Excel tutorials:

  • How to Lock Formulas in Excel
  • How to Copy and Paste Formulas in Excel without Changing Cell References
  • Show Formulas in Excel Instead of the Values
  • Convert Text to Numbers in Excel
  • Convert Date to Text in Excel
  • Microsoft Excel Won’t Open; How to Fix it!
  • Arrow Keys not Working in Excel | Moving Pages Instead of Cells
  • 20 Advanced Excel Functions and Formulas

6 Main Reasons for Excel Formula Not Working (with Solution)

  1. Reason #1 – Cells Formatted as Text
  2. Reason #2 – Accidentally Typed the keys CTRL + `
  3. Reason #3 – Values are Different & Result is Different
  4. Reason #4 – Don’t Enclose Numbers in Double Quotes
  5. Reason #5 – Check If Formulas are Enclosed in Double Quotes
  6. Reason #6 – Space Before the Excel Formula
Table of contents
  • 6 Main Reasons for Excel Formula Not Working (with Solution)
    • #1 Cells Formatted as Text
      • Solution
    • #2 Accidentally Typed the keys CTRL + `
      • Solution
    • #3 Values are Different & Result is Different
      • Solution
    • #4 Don’t Enclose Numbers in Double Quotes
    • #5 Check If Formulas are Enclosed in Double Quotes
    • #6 Space Before the Excel Formula
    • Recommended Articles

Excel Formula Not Working

#1 Cells Formatted as Text

Now let us look at the solutions for the reasons given above for the Excel formula not working.

Now take a look at the first possibility of the formula showing the formula itself, not the result of the formula. For example, look at the below image where the SUM function in excelThe SUM function in excel adds the numerical values in a range of cells. Being categorized under the Math and Trigonometry function, it is entered by typing “=SUM” followed by the values to be summed. The values supplied to the function can be numbers, cell references or ranges.read more shows the formula, not the result.

Excel Formual Not Working Example 1

The first thing we need to look into is the format of the cells; these cells are D1, D2, and D3. So, now take a look at the format of these cells.

Excel Formual Not Working Example 1-1

It is formatted as text. When the cells are formatted as text, Excel cannot read numbers and return the result for your applied formula.

Solution

Change the format of the cells to “General” or “Convert to Number.”

  1. We must first select the cells. Then, on the left-hand side, we can see one small icon. Click on that icon, and choose the option “Convert to Number.”

    Excel Formual Not Working Example 1-2

  2. Now, we must see the result of the formula.

    Excel Formual Not Working Example 1-3

  3. We are still not getting the result we are looking for. Now, we need to examine whether the formula cell is formatted as text or not.

    Excel Formual Not Working Example 1-4

  4. Yes, it is formatted as text, so change the cell format to “GENERAL” or “NUMBER.” We must see the result now.

    Excel Formual Not Working Example 1-5

#2 Accidentally Typed the keys CTRL + `

Often in Excel, when working in a hurry, we tend to type keys that are not required, which is an accidental incident. But if we do not know which key we typed, we may get an unusual result.

One such moment is SHOW FORMULAS in excelIn Excel, we can display formulas to investigate the procedure’s relationship. To begin, select the formula tab, then formula auditing, and finally show formulas. In addition, there is a keyboard shortcut for it.read more shortcut key CTRL + `. If we have accidentally typed this key, we may see the result like the picture below.

Excel Formual Not Working Example 2

As we said, the reason could be the accidental pressing of the show formula shortcut key.

Solution

The solution is to try typing the same key again to get back the results of the formula rather than the formula itself.

Excel Formual Not Working Example 2-1

#3 Values are Different & Result is Different

Sometimes, we see different numbers in Excel, but the formula shows different results. For example, the below image displays one such situation.

Excel Formual Not Working Example 3

In cells D1, D2, and D3, we have 10 as the value. In cell D4, we have applied the SUM function to get the total value of cells D1, D2, and D3. But the result says 40 instead of 30.

All the Excel file calculations are set to automatic. But to enhance the speed of the large data files, the user might have changed the auto calculation to a manual one.

Excel Formual Not Working Example 3-1

Solution

We can fix this in two ways. One is we can turn on the calculation to “Automatic.”

Excel Formual Not Working Example 3-2

Either we can do one more thing. We can also press the shortcut key F9, which is nothing but “Calculate Now” under the “Formulas” bar.

Excel Formual Not Working Example 3-3

#4 Don’t Enclose Numbers in Double Quotes

We must pass the numerical values to get the desired result in situations inside the formula. For example, please take a look at the below image; it shows cities and the average temperature in the city.

Working Example 4

If the temperature is greater than 25, then the average should be 25, and if the temperature is less than 25, then the average should be 20. Finally, we will apply the IF condition in excelIF function in Excel evaluates whether a given condition is met and returns a value depending on whether the result is “true” or “false”. It is a conditional function of Excel, which returns the result based on the fulfillment or non-fulfillment of the given criteria.
read more
to get the results.

Working Example 4-1

We have supplied the numerical results double-quotes =IF (B2>25,” 25″,” 20″). Unfortunately, when the numbers are passed in double-quotes, Excel treats them as text values. Therefore, we cannot do any calculations with text numbers.

Always pass the numerical values without double quotes like the below image.

Working Example 4-2

Now, we can do all sorts of calculations with these numerical values.

#5 Check If Formulas are Enclosed in Double Quotes

We need to ensure formulas are not wrapped in double quotes. It happens when we copy formulas from online websites and paste them as it is. If the formula is mentioned in double quotes for understanding, we need to remove double quotes and paste them. Otherwise, we may get only the formulas, not the result of the formula.

Working Example 4-3

#6 Space Before the Excel Formula

We all humans make mistakes. Typing mistake is one of the errors for the Excel formula not working. We usually commit day in and day out in our workplace. If we type one or more spaces before we start our formula, it breaks the rule of the formulas in Excel. As a result, we may end up with only the Excel formula, not the result of the formula.

Working Example 4-4

Recommended Articles

This article has been a guide to Excel Formula Not Working and Updating. Here, we discuss the Top 6 reasons and solutions for those Excel formulas not working and updating, practical examples, and a downloadable Excel template. You may learn more about Excel from the following articles: –

  • Excel Minus Formula
  • Excel VBA IFERROR
  • Formula Excel Errors
  • Max Formula in Excel

Unable to make use of Excel formula because all of a sudden it stopped working, updating or calculating your data figures? Desperately you are looking for the fixes so that your Excel formula starts working again?

If your answer is yes then DON’T WORRY…!  because you are at the right place.

This post will give you the best fixes to troubleshoot Excel Formulas Not Working, Excel formulas not updating or Excel formulas not calculating like issues.

I ensure you all that after reading the complete post you can proficiently fix Excel Formulas Not working issue on your own.

So, let’s dive into it….!

To recover Excel sheet data, we recommend this tool:

This software will prevent Excel workbook data such as BI data, financial reports & other analytical information from corruption and data loss. With this software you can rebuild corrupt Excel files and restore every single visual representation & dataset to its original, intact state in 3 easy steps:

  1. Download Excel File Repair Tool rated Excellent by Softpedia, Softonic & CNET.
  2. Select the corrupt Excel file (XLS, XLSX) & click Repair to initiate the repair process.
  3. Preview the repaired files and click Save File to save the files at desired location.

About Excel Formulas Error

Undoubtedly Excel provides a number of functions to analyze, audit, and calculate data. Some of these functions and formulas are frequently used by Excel users while some of them are specifically used by a small group of financial engineering or statistical specialist.

Excel file without a formula is impossible. Excel spreadsheet is all about formulas. Formulas make the work easy for maintaining and carrying out complex calculations as well. But what if you encounter Excel formulas not working issue? Well, it’s very frustrating as you are not able to do anything on your Excel file.

Let’s take an example for clear understanding:

Suppose you have created the reports for your management meeting and just before printing copies for the executives, you discover that totals are showing the last month values. This is very frustrating as you don’t know how to fix it? 

When such instances occur several questions start running in mind that why my Excel formulas not calculating automatically? OR why don’t Excel formulas not updating automatically?

As it’s a very annoying situation so it’s obvious for any user to get Panic. But you need to be calm so that you can find out the actual reason for getting Excel formulas not working issue. To help you in this, my tutorial will explain the most common mistakes that you are doing while making formulas for Excel.

Types Of Excel Formula Errors:

Mostly it is seen that Excel users get stuck in three of these situations when their Excel formula starts troubling them.

  • Excel formulas not working–

meanwhile this your Excel formula starts showing the wrong result or error.

  • Excel formulas not updating

It will display the old value even after you have already updated the dependent cells.

  • Excel formulas not calculating–

In this case, the cell will only display the formula not give any result of it.

Here in this article, we are describing the complete information that explains the most common mistakes that happen while using a formula in Excel. So, that any Excel user can overcome Excel formula not calculating, Excel formula not updating automatically or  Excel Formula not Working like issues easily and effortlessly.

How To Fix Excel Formulas Not Working Error?

How To Fix Excel Formulas Not Working Error

The occurrence of Excel formula not working issue returns the wrong results or sometimes errors too. So, in this section, you will get an idea of how to fix silly mistakes usually done at the time of creating Excel formulas.

1. Enter Numbers Without Any Formatting

While using the Excel formula, don’t add a currency sign eg: $ or € or a decimal separator.

Note: in the Excel formulas, a sign of comma is generally used for separating the function of arguments. Whereas, the sign of dollar is for making absolute cell reference.

So, you can put a numeric value like this, 50000 instead of putting data like this $50,000. All in all, I just want to say in your Excel formula simply use the numeric value.

2. Numbers shouldn’t be formatted as text values

Another very common reason for the Excel formula not working is that numbers formatted as text values. It may look like as a normal number but MS Excel considers them as a text string and doesn’t include it in the calculations.

Make sure numbers are not formatted as text values

Visual indicators of a text editor are like this:

  • Numbers that are formatted as “text” will by default get left-aligned while formal numbers are aligned right in the cells.
  • You will see that on the Home tab> number group, the number format box is selected with Text option.
  • When many cells having text numbers have been selected from the worksheet you will see that the Status Bar will only show the Count. whereas generally, it displays the count, sum, and average of numbers.
  • You will see a green triangle shape in the cell’s top-left corner or a leading apostrophe visible in the formula bar.

make-sure-numbers-are-not-formatted-as-text-values

To fix this, just select all the problems having cells and then tap on the yellow warning sign. After that select, the option Convert to Number.

excel-convert-to-number

But in some cases, nor the green triangles neither the warning signs seem in the cells. Then in that case go to the Home tab > Number group >number format box. if this shows the text, then clear all the formatting of the cells having the issue. after then set the format of the cell either general or number.

But if it still won’t work then make a new column and enter the data manually. Means just copy down your text to the notepad after then paste it on your Excel sheet. At the end delete off all broken columns.

3. Match All Opening And Closing Parentheses  In A Formula

Match all Opening and Closing Parentheses  in a Formula

Generally, arguments of the Excel functions are kept under parentheses and in complex formulas; you may require to put more than a single set of the parentheses. When making such complex formula make sure that you have opened and closed the parenthesis properly.

Well, Excel shows parentheses pair in some different colors when you use it in the formula. Suppose your formula is lacking with some parentheses then Excel will display the error and allow you to correct it by balancing the pair. and due to this users start getting Excel Formulas Not Working error message.

 4. Put All The Required Arguments Within The Excel Function

Enter all Required Arguments in an Excel Function

Each Excel function is having single or multiple required arguments. If you are entering optional arguments then enclosed it in the [square brackets] in your formula’s syntax. So, the formula must have all the necessary arguments. Or else your Excel will display the following You’ve entered too few arguments for this functionwarning message.

If the entered arguments are more than the required one then you will encounter with following You’ve entered too many arguments for this function” warning message.

5. Include The Full Path To A Closed Workbook

Include the Full Path in excel

If you are using a formula that references a closed Excel workbook then your external reference must include the workbook name and entire path to the workbook. For example:

=SUM(‘D:Reports[Sales.xlsx]Jan’!B2:B10)

6. Don’t Nest More Than 64 Functions Within A Formula

Do not Nest more than 64 Functions in a Formula

If you are nesting more than two Excel functions with each other for example suppose to create nested IF formula. Then follow these limitations:

  • In Excel 2016/2013/2010/2007 you can make use of max 64 nested functions.
  • While in Excel 2003 and lower, you can only make use of a maximum of 7 nested functions.

7. Don’t Enclose Numbers In Double Quotes

Do not Enclose Numbers in Double Quotes in excel formula

In the Excel formula; the value encoded within the double quotes counted as a text string.

That means, if you enter Excel formula like=IF(A1>0, “1”), then Excel will consider 1 as a text, and thus you won’t be able to make use of the returned 1’s in any other calculations. So, don’t put the double quotes and always write the formula for numeric value don’t enclose numbers in double-quotes until and unless you want it to count as text.

8. Enclose Workbook And Worksheet Names In Single Quotes

When referring to other worksheets or workbooks that have spaces or non-alphabetical characters in their names, enclose the names in single quotation marks.

For example Reference to another sheet:
=SUM(‘Jan Sales’!B2:B10)

Reference to another workbook:
=SUM(‘[2015 Sales.xlsx]Jan sales’!B2:B10)

9. Use Right Charcter For Separating The Function ArgumentSeparate Function Arguments with a Proper Character

Most of you separate the Excel function arguments with the comma, however, this doesn’t work on all Excel workbook. The character which you generally use to divide arguments moreover depends on the List Separator which is sets with the Regional Settings.

European countries use for assigning the decimal symbol. Whereas, for the list separator semicolon; is used.

For e.g: North American excel user, would write =IF(A1>0, “OK”, “Not OK”), whereas European Excel users will put the exact same formula like this =IF(A1>0; “OK”; “Not OK”).

 If you suddenly start getting Excel Formulas Not Working issue because of the “We found a problem with this formula…” error. in that case just go to your Regional Settings which is present in:

(Control Panel > Region and Language > Additional Settings)

After then make a check the character which is set for List Separator over there. make use of the same character for dividing the arguments in the formula of Excel.

Try the given tricks to solve the Microsoft Excel Formula not working and fix the error easily.

How To Fix Excel Formulas Not Updating Automatically?

How To Fix Excel Formulas Not Updating Automatically

When you are noticing that the Excel formula is not updating automatically the reason can be your Excel calculation setting is somehow got changed. Generally, it is found that when the calculation setting gets changed from automatic to manual. At that time Excel formula is not updating automatically like issues is been faced.

Here is how to change the calculation setting to fix Excel Formula Is Not Updating issue.

  • Go to the Excel ribbon, and then on the Formulas.
  • From this formula tab choose the Calculation group.
  • tap to arrow key present next to Calculation Options. From the drop-down choose the Automatic option.

Excel formulas not updating 1

Or else, you can modify the calculation setting through these steps:

  • For Excel 2019, Excel 2016Excel 2013, and Excel 2010  user:

Open Excel worksheet <  Formulas <  Calculation options group. After then choose the Automatic option present within Workbook Calculation.

  • For Excel 2007 user:

Tap to the Office button <  Excel options <  Formulas <  Workbook Calculation Automatic.

Excel formulas not updating 2

  • For Excel 2003 user:

From your Excel ribbon choose the Tools < OptionsCalculationCalculationAutomatic.

How To Fix Excel Formulas Not Calculating Automatically?

How To Fix Excel Formulas Not Calculating Automatically

If you are struggling with Excel Formulas Not Calculating issue then it’s because your cell is showing the Excel function in place of the evaluated value.

Behind this Excel formulas not calculating automatically error following are the reasons. So, check out the reasons along with its fixes to troubleshoot Excel formulas not calculating issues.

1. Show Formulas Mode Is Left On

One very common reason behind Excel formula not calculating error is that by mistakenly show formula mode has been activated in the worksheet.

So, to fix this Excel formula not calculating issue it’s compulsory to turn off Show Formulas mode.

Here is the step to be followed:

  • Go to the Excel Formulas tab and from the Formula Auditing group tap to the Show Formulas

Excel formulas not calculating 1

2. A Formula Is Entered As Text

The second reason behind the occurrence of Excel formula not calculating error is that Excel formulas is been formatted like text. For checking this out, follow these steps:

  • From the Excel ribbon go to the home tab and then choose the Number group.
  • Now choose the formula cell after then have a look over the Number Format box.
  • If it’s showing text in the number group then change it to General and press F2 button from the keyword, being in the cell.
  • Now enter any Excel formula so that it will recalculate the data again and show the calculated data.

Excel formulas not calculating 2

Steps To Recalculate Excel data

If due to any reason, you want to set the Calculation option to Manual. In excel you have the option to force the Excel formulas to recalculate the data again. For this, you need to click on the calculate button.

So, check this out how to force the Excel formulas to recalculate:

For Recalculating Entire Workbook Data:

  • From the Formulas tab choose the Calculation group.
  • From the opened Calculation group tap to Calculate Now.

For Recalculating  Any Specific Active Sheet:

  • From the Formulas tab choose the Calculation group.
  • From the opened Calculation group tap to Calculate Sheet.

Excel formulas not updating 3

If you to perform this recalculation task in all sheets of your opened Excel workbooks. Then for this just press the Ctrl + Alt + F9 button simultaneously.

In case you want to recalculate one single formula on the sheet then choose the formula cell. After then get into the editing mode by double-tapping the cell or by hitting the F2 button. At last hit Enter key from your keyboard.

Automatic Solution: MS Excel Repair Tool

Apart from the manual solution sometimes the Excel file gets corrupted and starts showing various errors, then, in this case, make use of the MS Excel Repair Tool. This is the best repair utility to fix all sorts of issues, corruption, and even errors in the Excel file.

With the help of these users can repair the Excel file easily and also restore the entire corrupted data including cell comments, charts, other data, and worksheet properties. This is a professionally designed program that can easily repair .xls and .xlsx files and easy to use.

* Free version of the product only previews recoverable data.

Steps to Utilize MS Excel Repair Tool:

Conclusion:

In this article, I tried my best to provide ample information to solve the Excel Formulas Not Working, calculating or updating error message. Make use of the given solution to fix the error and utilize the Excel file completely for maintaining crucial data.

Good Luck!!!  

Priyanka is an entrepreneur & content marketing expert. She writes tech blogs and has expertise in MS Office, Excel, and other tech subjects. Her distinctive art of presenting tech information in the easy-to-understand language is very impressive. When not writing, she loves unplanned travels.

If you have had problems where the Excel formulas don’t work.So this post is for you!

Anyone who uses formulas in Excel will sooner or later run into the problem that the formulas don’t work (or give the wrong result). Unfortunately, when it comes to Excel formulas, there are many things that can go wrong. But the good news is that if you go through some common causes, you will probably solve most of the problems where formulas don’t work in Excel.

In this article, we’ll show you the main issues that are likely causing your Excel formulas not to work. Verify!

Excel formulas not working: main reasons

Browse the topic of your interest:

Incorrect use of function syntax

Every function in Excel has a specific syntax that contains the number of arguments it can take or the type of arguments it can accept.

And in many cases, the reason why your Excel formulas are not working or giving the wrong result could be a wrong argument (or missing arguments).

For example, the VLOOKUP function takes three required arguments and one optional argument.

If you provide the wrong argument or don’t specify the optional argument (where it is required for the formula to work), it will return an incorrect result.

For example, suppose you have a table like the one shown in the image below, and you want to use the VLOOKUP function to get the grade for a particular student in cell E2. Note that you will need to specify the argument lookup valuewhich in this case is the name of the student.

On the other hand, if you don’t specify this argument, the formula will return the error #N/A.

Formulas don't work in Excel. Error in VLOOKUP function

So in this case, just enter a valid student name in cell D2 for the function to return the correct result.

See also the following article: Learn the VLOOKUP function in less than 2 minutes

Use of extra spaces

Leading and trailing spaces are hard to figure out and can cause problems when you use a cell that has them in formulas.

For a better understanding, take a look at the example below where we are using the PROCV function to get the grade for the student Carlos. However, the result of the formula is the #N/A error (not available error).

What to do when Excel does not recognize the formula?

Although the formula is correct and the name ‘Carlos’ clearly exists in the list, what we can’t see is that there is a trailing space in the cell that has the name (in cell D2).

procv formula with error N/A

Excel does not consider the contents of these two cells to be the same, and therefore considers a discrepancy when getting the value using VLOOKUP (or any other lookup formula).

To fix this problem, you must remove these extra space characters. You can do this using any of the following methods:

1. Clear cell and remove leading/trailing spaces before using it in formulas
two. Use the TILE function in the formula to ensure that leading, trailing, or double spaces are ignored. For more details on this tip, see the article: How to remove blank spaces in Excel

Use of manual calculation instead of automatic

Another common reason why Excel formulas don’t work is the use of manual calculations instead of automatic ones.

This setting may drive many Excel users crazy, because what few people know is that Excel has two calculation modes: Automatic and Manual.

By default, automatic mode is enabled, which means that if you use a formula or make any changes to existing formulas, it will automatically (and instantly) do the calculation and give me the result.

However, in some cases, Excel users enable the manual calculation setting. This is usually done when you have a large Excel file with lots of data and formulas. In these cases, you may not want Excel to recalculate everything when you make small changes (as it can take a few seconds or even minutes) for this recalculation to complete.

If you enable manual calculation, Excel won’t calculate unless you force it, making you think your formula isn’t working correctly. In this case, all you need to do in this case is to set the calculation back to automatic or force a recalculation by pressing the F9 key.

Below are the steps to change the calculation from manual to automatic:

1. access the guide formulas

two. click on Calculation Optionsor and select Automatic

Excel does not automatically calculate

Rows or columns deleted

Another reason your Excel formulas may not work is the exclusion of rows or columns that are used in calculations.

When this happens, Excel can sometimes adjust the reference and make sure the formulas continue to work correctly. However, this is not always possible.

A clear indication you get when formulas fail to delete cells/rows/columns is the #REF error! in cells This is a reference error that tells you there is a problem with the references in the formula.

For a better understanding, consider the following example where we are using the SUM function to add the values ​​in the range A1:A6

Formulas don't work in Excel. Excel formula not working REF error

Now, if we delete any of those cells/rows, the SUM formula will return the #REF! error. This happens because when we delete the row, the formula doesn’t know what to reference.

Why does REF appear in Excel?

In the image above, notice that the third argument of the formula has been converted to #REF. (which previously referred to the cell we deleted).

To work around this problem, before deleting data that is used in formulas, make sure there are no errors after deletion. It is also recommended that you back up your work regularly to ensure that you always have something to fall back on.

Incorrect use of parentheses.

As your formulas start to get larger and more complex, it is recommended that you use parentheses to make it absolutely clear which part to join. In some cases, you may have the parentheses in the wrong place, which may give the wrong result or error.

For example, suppose you have the following formula:

=10+12*50

In the above formula, the result is 610 since Excel does the multiplication first and then the addition (since there is an order of precedence when it comes to operators).

If you want to do the addition first and then the multiplication, you should use the following formula:

=(10+12)*50

In some cases, the order of precedence may work for you, but it is still recommended that you use parentheses to avoid confusion.

Incorrect use of absolute/relative cell references

When you copy and paste formulas into Excel, it automatically adjusts the references. Sometimes this is exactly what you want (especially when you’re copying and pasting formulas into the column), but sometimes you don’t want it to happen.

An absolute reference is when you set a cell reference (or range reference) so that it doesn’t change when you copy and paste formulas, and a relative reference is one that changes.

For more information on this topic, see the article: Cell references: relative, absolute and mixed

You may get an incorrect result if you forget to change the reference to an absolute (or vice versa). For a better understanding, please take a look at the example below where we are using the VLOOKUP function to return the grades of all students in column E. The formula was inserted into cell E2 and then we used the Excel fill handle to apply the formula to the other cells.

formula not working in excel when dragging

However, as you can see, the formula has an error in some cases. This happens because we don’t block the table_array argument — it is A2: B6 in cell D2, while it should be $A$2:$B$6

By having these dollar signs before the row number and column alphabet in a cell reference, I am forcing Excel to keep these cell references fixed. So even when I copy this formula, the table array will still refer to A2:B6.

So before you drag your formula into more cells, make sure the references are correct. To convert a relative reference to an absolute reference, select that cell reference within the cell and press the F4 key. You’ll notice this changes as you add the dollar signs. You can keep pressing F4 until you get the reference you want.

Formulas don't work in Exce. How to lock cells in procv

Using wrong reference to worksheet/workbook names

When referring to other worksheets or workbooks in a formula in Excel, you must follow a specific format. And in case the format is wrong, you will get an error.

For example, if I want to reference cell A1 on Sheet2, the reference would be =Sheet2!A1 (where there is an exclamation point after the sheet name).

And if there are multiple words in the spreadsheet name (for example: Monthly Billing 2022), the reference would be =’Monthly billing 2022′!A1 (where the name is enclosed in single quotes followed by an exclamation mark).

In case you are referring to an external workbook (let’s say you are referring to cell A1 in ‘Monthly Invoicing 2022’ in the workbook named ‘Sales Control’), the reference will be as shown below:

='[Monthly Billing 2022.xlsx]Monthly Billing 2022'!$A$1

And in case you close the workbook, the reference will change to include the full path of the workbook (as shown below):

='C:UsersExcelEasyDesktop[Monthly Billing 2022.xlsx]Monthly Billing 2022'!$A$1

If you end up changing the name of the workbook or sheet that the formula references, it will return the #REF! error.

Circular references

A circular references They are also often common reasons why Excel formulas don’t work.

A circular reference is when you refer (directly or indirectly) to the same cell where the formula is calculated.

Below is a simple example where we are using the SUM function on cell A5 while using it in the calculation itself.

= SUM (A1: A5)

Although Excel will tell you about the circular reference, it won’t always do so. And it might give you wrong result (without warning). And if you suspect a circular reference in your formulas, you can check which cells have it.

To do this, go to the tab Formula and in the group Formula Auditclick the dropdown icon Error checking (the little arrow pointing down).

Hover over the option Circular references and it will show the cell that has the circular reference problem.

Excel formulas not working what to do

Cells formatted as Text

If you entered a formula into a cell in Excel and pressing Enter returned the formula instead of the value, then it is a clear case that the cell is formatted as text.

Formulas don't work in Excel. Why doesn't Excel add cells?

When a cell is formatted as text, Excel considers the formula to be a text string and displays it as is. In this case, you will have two possible solutions:

1. Change cell format to General instead of Text.
two. Go to the cell that has the formula, enter edit mode (use F2 or double-click the cell), and press Enter

If the above steps don’t resolve the issue, another thing to check is if the cell has an apostrophe at the beginning. Many people add an apostrophe to convert formulas and numbers to text. If there is an apostrophe, you can simply remove it.

Also check out the following Excel tips:

So what do you think of the tips? Now, whenever you notice that your Excel formulas are not working, just come back to this article and check each topic to find the solution.

Excel offers over 300 library functions. Although using these functions has made calculations easier, using them correctly can sometimes be tricky. Even the most experienced users can sometimes run into Excel formulas not working. You may be encountering one of these situations in your Excel program if your formula isn’t working:

  • A pound (#) error code
  • Excel displaying wrong results
  • Excel displays the formula, but no results
  • “There’s a problem with this formula..” error message
  • “..Links to one or more external source..” error message

The fixes to Excel formulas not working depending on which of these issues you’re dealing with. Besides human errors, Excel may incorrectly calculate formulas if there is an issue with your Office app. In such cases, you must reinstall MS Office to fix the problem with its program files.

Solve Excel Error Message

Errors in Excel

Excel has a total of eight error messages. Excel displays each of these messages for different purposes.

#NAME?

If you encountered the #NAME? error, there is an issue with the function you’ve used in the formula. Check if you’ve correctly entered the function in your formula.

#VALUE!

Excel displays the #VALUE! error when there is an issue with the cell format. Recheck the cell format of the referred cells from your formula. If they’re under a different cell format, change it from the Home tab.

#REF!

You encounter the #REF! error when Excel has a problem locating the reference from your formula. Check if you’ve properly referenced your cell. If you’ve used absolute referencing, see if you’ve moved your data to a different location.

###

Excel displays this error when your cell content does not have enough room. Select the column with the error code and expand the column to display the full value.

#DIV/0!

If you run into this error, Excel alerts you that your data was divided by 0. Any value divided by 0 is infinite, and Excel cannot process it. To fix this error, change your data where it is not divided by 0.

#NULL

You probably have entered an incorrect syntax if you entered the #NULL error. Check if you’ve properly used the separators, including comma (,) and colon (:). 

#N/A

Check if the cell you’ve referred to in the Excel formula is removed. Excel mostly displays the #N/A error when Excel cannot locate the referred cell.

#NUM

Excel uses the #NUM error to alert you that your number has non-numeric content. If you’ve entered a comma (,) or a special symbol such as the dollar ($) sign, remove these values to solve this error message.

Solve Excel Not Calculating Formula

If Excel only shows formulas but not results, there are three possibilities you could explore. You may either have the Show Formula or Manual calculation options enabled. 

Excel will also fail to calculate if the cell you’ve entered in your formula is formatted as text. If you have entered ` before data, Excel will read your data as text. If you do not intend to use it as a text, remove the ` symbol from your data.

Disable Show Formula

  1. Launch MS Excel to open your document.
  2. Head to Formulas from the menubar.
  3. If the Show Formula option is selected, click it to deselect it.
    Excel Show Formula

Enable Automatic Calculation

  1. Open your spreadsheet.
  2. Select Formulas from the menubar.
  3. Click Calculation Options.
  4. From the fly-out menu, choose Automatic.
    Automatic Calculation Options

Format Cell to General 

  1. In your workbook, select the cell or cell range with the formula.
  2. On the Home tab, select the fly-out menu in the Numbers section.
  3. Choose General.
    General cell format

Check Arguments

Except for PI and TODAY, Excel formulas need arguments to calculate the results. If you haven’t entered your arguments, Excel formulas will not work. Excel will present a problem with this formula error message in such cases. If you’ve entered your arguments, you should double-check them to ensure you have entered them correctly.

If your formula looks right, select a different list separator from the Excel options. For example, you may use a comma (,), but you’ve selected a semi-colon (;) as your list separator. You can change this configuration from advanced Excel settings.

You can configure list separators by thousands and decimals from Excel settings.

  1. Launch Excel.
  2. Head to Options from the sidebar.
    Excel Options
  3. Select Advanced from the left panel.
  4. Scroll down to the Editing options section and deselect Use system separators.
  5. Enter the appropriate symbol for Thousands and Decimal separators.
    List separator Excel

Check References

Excel allows you to reference another worksheet or cell in its grid. If you have made such references, check if they’re correct. Additionally, Excel formulas with references will not work if you’ve moved or deleted the reference.

Circular Referencing Excel

Make sure you haven’t created a Circular reference in your sheet. A circular reference is when you refer to the same cell you’re entering your formula in. This creates an infinite loop Excel cannot calculate.

Use Less Nested Functions

Excel only supports a total of 64 functions in a single formula. If you have nested more than 64 functions in a formula, break the formula down into smaller formulas. Not only will it bypass the restriction, but you will also leave less room for error.

Check for Syntax Error

Use Correct Syntax

Usually, there are four symbols in an Excel formula; the equals to, comma, parentheses, and the double quotation sign. If you do not use these symbols correctly in your formula, Excel will fail to calculate a result.

Formulas in Excel must start with an equal to (=) sign. Excel will only read your data as a formula once you start it with the equals sign.

Similarly, references are usually separated by a comma sign (,) in a formula. If you do not use a separator, Excel will read your references as a single entity and may not work.

Arguments in a formula are written inside Parentheses (). Especially in nested functions, ensure you have entered an equal amount of open and closed parenthesis.

Only use the double quotation mark (“ ”) to add text to your formula. Excel will not recognize the syntax if you’ve entered your value in single quotes (‘ ’). Additionally, ensure you do not enter a numeric value you intend to manipulate inside double quotes. Excel will read your numeric value as text in the formula. This will produce a different result than you expected.

If you’ve used operators such as Ampersand (&), Multiply (*), and Divide (/) make sure you’ve used the correct symbols. If you use a different symbol, you will get a different result.

Понравилась статья? Поделить с друзьями:
  • Formula vba excel описание
  • Forms of word mix
  • Forms of word employ
  • Formula space in excel
  • Forms of word allow