What error will show if you remove some cell that is used in a formula calculation?

When you’re working formulas in Excel, many times you will encounter the #VALUE error.

While the error is quite generic and doesn’t tell you what the problem is, in most cases, this happens when you give a formula a data type that is not expected (explained with examples below).

For example, if you have a few numbers that you’re adding in Excel, and you also try and add a text value in the same formula, Excel will give you an error. This is because Excel expects only numbers to be used in addition or subtraction.

While the easiest way to tackle the #VALUE error would be to make sure that the data types are correct in the formulas, it may not always be possible.

In this tutorial, I will show you a couple of methods you can use to get rid of the value error in Excel.

  • Value Error Becuase of Text String in Formulas
  • Value Error Because of Incorrect Argument Type in Formulas
  • Value Errors Due to Incorrect Date Format
  • Removing #VALUE Error Using IF or IFERROR Functions
  • Find All Cells with the #VALUE Error

Value Error Becuase of Text String in Formulas

Some formulas are designed to only work with numbers.

And when there are non-numbers (such as text strings) used in the formula, you may see a value error.

In the image below is a very simple example where I need to add the scores of a student in different subjects.

While I have the numbers for all the subjects, I don’t have them for Math (and there is NA written instead of the score value).

If I use a simple arithmetic equation to get the sum of all the scores, I will get a value as shown below.

What error will show if you remove some cell that is used in a formula calculation?

This is because the formula expects the only add numbers and I’m referencing a cell that has a text string instead.

How to tackle this?

In such simple addition subtraction formulas, one way to get rid of the error would be to remove the text string so that only numbers are left that can be added.

In our above example, if I remove the text ‘NA’ from the cell, the formula would work just fine.

Another way you can tackle this VALUE error is by using in-built functions instead of using the arithmetic equation.

Many of the commonly used Excel formulas are built in a way where they ignore any unexpected data type that is not supported by the formula.

For example, in this case, you can use the SUM formula, which would ignore all the text strings and only add the numbers.

What error will show if you remove some cell that is used in a formula calculation?

Another possible reason that can give you a value error is when you have a space character in a cell that you have referenced in a formula. While most of the formulas are designed to ignore empty cells with space characters, in case you are using a simple arithmetic equation to add or subtract values, having a space character in a cell could give you a value error (as space character is considered a text string).

Value Error Because of Incorrect Argument Type in Formulas

If you’re using a formula that gives you a value error, there’s a good chance you have used an argument that is not the expected data type in the formula.

Let me give you an example and explain.

Below I have the year, month, and day value in three separate cells.

If I use this data in the DATE formula to get the serial number of this date, it is going to give me a value error.

What error will show if you remove some cell that is used in a formula calculation?

This is because the date formula expects only numeric values as arguments, and in this formula, I have the month name which is a text string.

How to tackle this?

Check and double-check the formula to make sure that the argument types are correct.

It’s possible that you may be using formulas that you’re not very well versed with.

In such cases, it’s a good idea to check the help for each formula and make sure that the argument type is correct.

Pro Tip: Sometimes, the formulas can get large and complex and it could be difficult to find out what’s causing the error. A good technique in such cases to debug the formula would be to select a portion of the formula in the formula bar and hit the F9 key. The F9 key computes and gives you the result of the selected portion of the formula. This allows you to debug the Formula part-by-part.

Value Errors Due to Incorrect Date Format

Excel has multiple in-built date formats that it can recognize.

But in some cases, you may have a date in a format that Excel does not recognize as a date.

In such a scenario, Excel would treat those dates as text strings.

Now, if you try and use these dates in formulas that are built to handle date values, you will get a value error.

Let me explain with an example.

Below I have a date in cell A1, but this is not in the format that Excel recognizes as a proper date format.

If I try and use this date in the EOMONTH formula (which requires a date as one of the arguments). it will give me the value error.

What error will show if you remove some cell that is used in a formula calculation?

How to tackle this?

The only way to tackle this issue is to make sure that the date is in the right format.

Pro tip: A quick trip to make sure that the date is in the right format is to go to an empty cell and add 1 to the date value. For example, if you have the date in cell A1, then you go to an empty cell and enter =A1+1. If you get a result, then the date is in the right format, and if you get an error, then it needs to be corrected

Removing #VALUE Error Using IF or IFERROR Functions

Excel has some built-in error handling formulas that can help you tackle the value error.

This can be done using the IFERROR formula (or a combination of IF and ISERROR).

Below I have a data set where I have the dates in column A and the number of days that I want to add to these dates in column B.

What error will show if you remove some cell that is used in a formula calculation?

In column C, I use the below formula to get the date after the specified number of days for each date:

=A2+B2

What error will show if you remove some cell that is used in a formula calculation?

As you can see, some of the results show the value error as the dates are not in the right format (i.e., these are in a format that Excel doesn’t recognize as a date, hence these are considered as text strings).

You can use the below formula to get a more meaningful text instead of the value error.

=IFERROR(A2+B2,"Check the date")

What error will show if you remove some cell that is used in a formula calculation?

The above IFERROR formula would return the result of the first argument, and in case that results is an error, then it would return the second argument.

You can also achieve the same thing by using the below combination of IF and ISERROR formula

=IF(ISERROR(A2+B2),"Check the Date",A2+B2)

The above first checks whether the result of the calculation is an error or not. If it’s an error, it returns the second argument, else the third argument.

Note that if you’re using excel 2003 or versions prior to that, you would not have access to the IFERROR formula (as it was introduced from Excel 2007 onwards)

One drawback of using the IFERROR formula is that it is going to catch all the different types of error (be it #N/A or #DIV/0 #VALUE, #REF, etc.). So no matter what’s causing the error, IFERROR formula would bucket everything as an error and give you the specified second argument

Find All Cells with the #VALUE Error

If you’re auditing someone else’s work, it may be useful to know how to quickly find out all the cells that have the value error in them.

This can be done using a simple Find operation in Excel.

Below are the steps to quickly find out all the cells that contain the value error in a worksheet:

  1. Click the Home tab

What error will show if you remove some cell that is used in a formula calculation?

  1. In the Editing group, click on Find and Select

What error will show if you remove some cell that is used in a formula calculation?

  1. In the options from the drop-down, click on Find. This will open the Find and Replace dialog box
  2. Click on the Options button. This will make available some additional options

What error will show if you remove some cell that is used in a formula calculation?

  1. In the Find and Replace dialog box, make the following changes:
    1. In the ‘Find what’ field, enter VALUE!
    2. From the ‘Within’ drop-down, select Workbook (or keep in Worksheet if you only want to find the error in the active worksheet)
    3. In the ‘Look in’ drop-down, select Values

What error will show if you remove some cell that is used in a formula calculation?

  1. Click on Find All

What error will show if you remove some cell that is used in a formula calculation?

The above steps would scan your entire worksheet (or workbook if you selected that) and give you a list of all the cells that contain the value error.

You should see the list of cells as shown below.

What error will show if you remove some cell that is used in a formula calculation?

Now you can go through each of these cells one by one and handle these, or if you want to delete these or highlight these in one go, you can do that as well.

To select all the cells that have the value error, click on any of the listed cells in the Find and Replace dialog box, and then use the keyboard shortcut Control + A (hold the Control key and press the A key). If you’re using Mac, use Command + A instead.

That’s all that you need to know about the value error in Microsoft Excel.

In this tutorial, I covered the possible reasons that can cause the Value error and how to tackle these, some inbuilt error-handling formulas that you can use in case you get the value error, and how to quickly find and select all the cells that contain the value error in the worksheet or the workbook.

I hope you found this tutorial useful.

Other Excel tutorials you may also like:

  • NAME Error in Excel (#NAME?)- What Causes it and How to Fix it!
  • #REF! Error in Excel – How to Fix the Reference Error!
  • How to Get Rid of #DIV/0! Error in Excel? Easy Formulas!
  • Use IFERROR with VLOOKUP to Get Rid of #N/A Errors
  • Identify Errors Using Excel Formula Debugging (2 Methods)

What is the possible reason for the error result in a formula?

error typically appears when there is an erroneous space within your formula. Placing a space where a comma or colon should be is usually what causes the issue. In Excel, a space represents the "range intersect" operator, while a comma combines two references and a colon references a range of cells.

What type of Excel error occurs if the formula is used incorrectly?

Value Error ( #VALUE! ) Excel shows a Value error whenever the variable mentioned in the formula is wrong. If you see the image below, you will notice that in the formula cell A4 contains text whereas the other 3 cells contain numerical values and hence there is an #VALUE!

Which error occurs in the spreadsheet if operator is missing in formula?

The #DIV/0! Error is due to the wrong calculation method, or one of the operators is missing. This error occurs in calculations. For example, if we have a “Budgeted” number in cell A1 and the “Actual” number in cell B1, we must divide the B1 cell by the A1 cell to calculate the efficiency.

What is the formula when used will give you an error on Excel?

#REF! error is one of the most common errors you'll see in Excel formulas. It occurs when a reference becomes invalid. In many cases, this is because sheets, rows, or columns have been removed, or because a formula with relative references has been copied to a new location where references are invalid.