Skip to main content

How to change #DIV/0! error to the readable message in excel?

Sometimes, when we use the formula to calculate in excel, some error messages will display. For example, in this formula =A1/B1, if B1 is empty or contains 0, the formula will display a #DIV/0 error. Is there any way to make those error messages clearly readable or if you want to use other messages to replace the errors, what should you do?

doc-excel-change-error-message-1 -2 doc-excel-change-error-message-2

Here, I am going to introduce you some methods to replace error messages.

Change error values with VBA code

Change error values with Kutools for Excel


arrow blue right bubble Change error values with VBA code

If you have a range of cells which contain some formula error values, and now you need to convert all the error values to some readable messages, such as 0. The following VBA code can help you, please do as this:

1. Hold down the ALT + F11 keys to open the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and paste the following code in the Module Window.

VBA code: change error values to some readable messages

Sub ReplaceErrors()
'Update 20131216
Dim Rng As Range
Dim WorkRng As Range
Dim ReplaceStr As String
On Error Resume Next
xTitleId = "KutoolsforExcel"
Set WorkRng = Application.Selection
Set WorkRng = Application.InputBox("Range", xTitleId, WorkRng.Address, Type:=8)
ReplaceStr = Application.InputBox("Replace text", xTitleId, Type:=2)
Set WorkRng = WorkRng.SpecialCells(xlCellTypeFormulas, 16)
WorkRng.Value = ReplaceStr
End Sub

3. Then press F5 key to run this code, and a prompt box will pop out to tell you select a range that you want to use. See screenshot:

doc-excel-change-error-message-3

4. And then click OK, another box will appear, please input the values into the text box that you want to replace the errors. See screenshot:

doc-excel-change-error-message-4

5. Click OK and all the error values have been replaced with the value you need.

doc-excel-change-error-message-5

Note: This VBA code will change all error values (not just DIV/0 error) to your needed messages.


arrow blue right bubble Change error values with Kutools for Excel

If you are not familiar with the above code, using the advanced tool- Error condition wizard of the Kutools for Excel to achieve them quickly and conveniently.

The multifunction of Error Condition Wizard of Kutools for Excel:

1). Change any types of error condition (#N/A, #VALUE!, #REF!, #DIV/0!,#NUM!, #NAME?, or #NULL! ) to 0, blank cell, customized text, etc.;

2). Change only the #N/A error to 0, blank cell, customized text, etc.;

3). Change any error messages except #N/A error to 0, blank cell, customized text, etc..

Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. Get it Now.

After installing Kutools for Excel, please do as following steps:

1. Click Kutools > More Tools > Error Condition Wizard, see screenshot:

doc-excel-change-error-message-6

2. In the Error Condition Wizard dialog box, do the following options:

  • (1.) Clickdco-button1 button to select the range that you want to change the errors;
  • (2.) Specify the error types from the drop down list, you can select Any error value, Only the #N/A error value or Any error value except #N/A;
  • (3.) Specify the content or messages you would like to use for replacing error messages under Error display section, in this example, I replace the errors with the value “null”.

doc-excel-change-error-message-7

3. After finishing the settings, click OK, all the error values have been replaced with your entered message. See screenshots:

doc-excel-change-error-message-1 -2 doc-excel-change-error-message-8

Click to know more about this Error Condition Wizard.


Related article:

Search and replace # formula errors with 0 or blank cells in Excel?

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (2)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Thanks, this has been a really good idea
This comment was minimized by the moderator on the site
=iferror() Will return a specified value if an error.
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations