In Excel, how can I find and replace cells with a value of #N/A with 0, blank, etc.? Finding works fine, but when using the replace tab in the dialog box, the option to search for values goes away and I can only search in formulas.
Excel Find and Replace #N/A
find and replacemicrosoft excel
Best Answer
You can always use
IFERROR()
. This will replace any errors with whatever value you choose. Just be mindful that it would also replace all other errors such as #VALUE etc. Use it like this:Alternatively you can use
ISNA()
to filter only for #N/A values, but it requires if functions and repetition of your formula which can get cluttered: