ClioSport.net

Register a free account today to become a member!
Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

  • When you purchase through links on our site, we may earn an affiliate commission. Read more here.

Excel ISERROR can't figure it?



Hi guys,

Having trouble getting ISERROR to replace any #N/A with 0 value in the column. Here's what I currently have but it doesn't seem to work?

=ISERROR(VLOOKUP($S$2,Q2:R2,2,FALSE),"0",(VLOOKUP($S$2,Q2:R2,2,FALSE)))

Apparently I have too many arguments in the formula?
 
If you're using something newer than Excel 2003 then I'd just use if the IFERROR function, i.e.

=IFERROR(VLOOKUP($S$2,Q2:R2,2,FALSE),0)



If you want to still use ISERROR, then I think you need to use an IF function beforehand, like so:

=IF(ISERROR(VLOOKUP($S$2,Q2:R2,2,FALSE),0,(VLOOKUP( $S$2,Q2:R2,2,FALSE))))


I've only been using Excel for less than 3 months though so that may well all be lies
:eek:


Edit: Far too slow!
 


Top