Does filtering out errors speed up Excel?

paulbucklandnz

New Member
Joined
Sep 21, 2016
Messages
1
I have inherited a spreadsheet with countless formulas like this:
=IF(ISNA(MATCH(A1,MatchRange,0)),"n/a",INDEX(IndexRange,MATCH(A1,MyNamedRange,0)))

Obviously I could change these to:
=IFERROR(INDEX(IndexRange,MATCH(A1,MyNamedRange,0)),"n/a")

But I thought that instead I might just not bother checking for errors and just have:
=INDEX(IndexRange,MATCH(A1,MyNamedRange,0))
and leave the #N/A values instead of changing them to "n/a".

However, in my past experience, Excel has slowed down to a crawl if there are too many actual error results in a spreadsheet.
Would Excel run slower leaving in the real error results, so I should check them and replace with "n/a", or can I just leave the error results without a big performance hit?

Thanks!
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.

Forum statistics

Threads
1,215,071
Messages
6,122,963
Members
449,094
Latest member
Anshu121

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top