Last Friday, we have learned about an interesting formula – IFERROR Formula using which you can easily handle errors in Excel workbooks.
Quite a few people reading that page asked, “Wow, this is good. But how can I take a sheet full of =IF(ISERROR(…)….) formulas and convert them to =IFERROR()”
There is a different set of folks who asked “Wow, this is good. But quite a few of my colleagues use Excel 2003 and they see a bunch of #NAME errors when I send them an excel workbook with IFERROR formulas. Any help?!?”
I am pleased to announce that I wrote 2 simple macros, iferror2iserror() and iserror2iferror() that would scan formulas in a bunch of selected cells and convert them from IFERROR to ISERROR and vice-a-versa. Pretty cool, eh?
Download Excel Macros Workbook
Click here to download the workbook that has macros to convert IFERROR formulas to ISERROR formulas and vice-a-versa.
If you just want to examine the code:
Click here to view the VBA Module code.
What are these macros and how do they work?
The workbook contains 2 macros – iferror2iserror() & iserror2iferror().
What does iferror2iserror() macro do?
As the name suggests, It scans a bunch of selected cells for any IFERROR formulas and then converts them to ISERROR formulas.
For eg. if a cell has =IFERROR(expression, error), the output would be =IF(ISERROR(expression),error,expression)
What does iserror2iferror() macro do?
This macro scans a bunch of selected cells for any ISERROR formulas and then converts them to IFERROR formulas.
For eg. if a cell has =IF(ISERROR(expression),error,expression), the output would be =IFERROR(expression, error)
How to use these macros?
Very simple. Just select the cells with formulas and then run the required macro. The macros only affect cells with either IFERROR or ISERROR formulas.

What are the limitations of these macros?
These macros should hold good for many real life scenarios. That said,
- These macros do not check for IFERROR (or ISERROR) recursively. ie, if a formula has IFERROR inside another IFERROR, only the first one would be converted.
- These macros do not work when you have commas (,) inside the formula in double quotes. For eg. the below formula fails.
=IFERROR(VLOOKUP("Kirk, James",tblStarwars,2,false),"Captain not found"))
Your comments:
How do you convert IFERROR or ISERROR formulas? Do you use a macro or you manually change the formulas? Please share your techniques and ideas using comments.
Also, if you wish to modify the code, please feel free to do so. Share your work with rest of us thru comments so that we can benefit too.

















2 Responses to “Top 10 Power BI Interview Questions & Answers”
Hello...
In Power BI I have data that includes months by name only (e.g. May, April, December...)
I need to build charts etc. but i need the months to go chronologically... not alphabetically... I cannot seem to find the fix to this.... once again, my data does NOT have an actual date attached to it (like 02/01/2023)....only month names... can i use a helper table wher i id the month names as numbers 1 thru 12? and if so, how do i manage this to work for me ?
Thank you.
~Keith
You need to setup an extra table to map each month name to a running number. A simple 12 row table like
Jan 1
Feb 2
Mar 3
..
Dec 12
Then create a relationship between this month table and your month column
Now, go to "table view" in Power BI and set the sort by column to month number for the month name column on this new table.
Finally, use the new table's month name whenever you need to refer to the month name in the visuals.
They will be chronologically arranged.