iserror help

  • Thread starter Thread starter Scott@CW
  • Start date Start date
S

Scott@CW

Can someone please help with turning the below formula into an iserror. I
have tried several times but keep getting a format error.

IF(VLOOKUP(--H21,$B$21:$B$200,1,FALSE),"No","Yes")

Thank you.
 
Not sure what "turning (the) formula into an iserror" really means, but
perhaps:

=IF(ISNA(MATCH(--H21,$B$21:$B$200,FALSE)),"Yes","No")

or

=IF(COUNTIF($B$21:$B$200,--H21)>0,"No","Yes")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top