Add the if(ISERROR( statement to the start of your formula and make the TRUE part equal 0 as shown
Good luck
P.S. My brackets may be wrong as I did this off the cuff.
Although "IF(ISERROR will replace the "#N/A" with "0", it will also replace any other errors which could lead to problems. By using "IF(ISNA" you would be addressing only the problem of the data not being found in your table, and not a possible forumla error.
Anthony --
Since you're doing an exact match, the following is a reasonably efficient way of returning zero when MATCH fails:
=IF(COUNTIF(Format_Update!C$2:C$423,L42), INDEX(Format_Update!C$2:D$423, MATCH(L42,Format_Update!C$2:C$423, 0), 2), 0)
Aladin
===========
I tried both ways it's stating that there is an error with the formula.....it highlights the 0. I tried putting it in quotes but it doesn't seem to help. Any other suggestions?
Thank you both for responding!
Anthony
It worked....thanks Aladin!!! I'm still curious as to why I couldn't get the others to work. Perhaps someone can drop me a quick explanation. Thanks again!
Anthony
Not sure why it's not working. Using your original formula, it should read like this:
=IF(ISNA(INDEX(Format_Update!C$2:D$423, MATCH(L42,Format_Update!C$2:C$423,0),2)), 0 ,INDEX(Format_Update!C$2:D$423, MATCH(L42, Format_Update!C$2:C$423,0),2))