ISNA Help Please Please please

  • Thread starter Mattlynn via OfficeKB.com
  • Start date
M

Mattlynn via OfficeKB.com

Hi
Can someone please add an ISNA bit to this please for use into excel 2007.
I have been trying for ages and have been getting all tied up with it
Many Thanks
Matt



=VLOOKUP(J5,A:B,2,FALSE)
 
F

Fred Smith

Do it this way:
=IF(ISNA(VLOOKUP(J5,A:B,2,FALSE)),"",VLOOKUP(J5,A:B,2,FALSE))

Regards,
Fred
 
M

Mattlynn via OfficeKB.com

thank you everyone - thats just what i needed - perfectomundo

Matt


Fred said:
Do it this way:
=IF(ISNA(VLOOKUP(J5,A:B,2,FALSE)),"",VLOOKUP(J5,A:B,2,FALSE))

Regards,
Fred
Hi
Can someone please add an ISNA bit to this please for use into excel 2007.
[quoted text clipped - 3 lines]
=VLOOKUP(J5,A:B,2,FALSE)
 
M

Mike H

Mat,

I prefer this method

=IF(COUNTIF(A:A,J5)>0,VLOOKUP(J5,A:B,2,FALSE),"")

but if you want isna

=IF(ISNA(VLOOKUP(J5,A:B,2,FALSE)),"",VLOOKUP(J5,A:B,2,FALSE))

BTW. Unless it's essential then avoid using full columns, it can slow things
down a lot.


--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
 
B

Bob Phillips

Mike H said:
BTW. Unless it's essential then avoid using full columns, it can slow
things
down a lot.

In an arry formula using too many rows can be a problem Mike, but in a
non-array function, I don't think so.
 
F

Fred Smith

You're welcome. Thanks for the feedback.

Regards,
Fred

Mattlynn via OfficeKB.com said:
thank you everyone - thats just what i needed - perfectomundo

Matt


Fred said:
Do it this way:
=IF(ISNA(VLOOKUP(J5,A:B,2,FALSE)),"",VLOOKUP(J5,A:B,2,FALSE))

Regards,
Fred
Hi
Can someone please add an ISNA bit to this please for use into excel
2007.
[quoted text clipped - 3 lines]
=VLOOKUP(J5,A:B,2,FALSE)
 

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

Top