ISERROR

J

Jim

Can anyone tell me how to get the ISERROR function in this function:

=IF(B59>1,VLOOKUP(A59,$D$3:$S$2423,14,FALSE)," ")

I have been trying, but to no avail.
 
M

Mike H

Maybe,

=IF(ISERROR(IF(B59>1,VLOOKUP(A59,$D$3:$S$2423,14,FALSE),"
")),"",IF(B59>1,VLOOKUP(A59,$D$3:$S$2423,14,FALSE)," "))

Mike
 
G

Gord Dibben

I recommend not using ISERROR which would mask all errors.

I think you just need the ISNA function.

=IF(ISNA(IF(B59>1,VLOOKUP(A59,$D$3:$S$2423,14,FALSE))),"",IF(B59>1,VLOOKUP(A59,$D$3:$S$2423,14,FALSE)))


Gord Dibben MS Excel MVP
 
J

Jim

Thanks.

I recommend not using ISERROR which would mask all errors.

I think you just need the ISNA function.

=IF(ISNA(IF(B59>1,VLOOKUP(A59,$D$3:$S$2423,14,FALSE))),"",IF(B59>1,VLOOKUP(­A59,$D$3:$S$2423,14,FALSE)))

Gord Dibben  MS Excel MVP







- Show quoted text -
 

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