Vlookup

F

FP Novice

I would like this string to return "not equiped" when an empty cell is
encountered.

I have tried multiple changes and still I only get a "0" returned. Any help
would be appreciated.

Here is my string:

=IF(ISERROR(VLOOKUP($B6,'Table
1'!$A6:$G$14988,3,FALSE)),"",VLOOKUP($B6,'Table 1'!$A6:$G$14988,3,FALSE))
 
P

porter444

Try using ISNA instead of ISERROR
--
If my posting was helpful, please click the "Yes" button.

ROCK ON!,

Scott
 
F

FP Novice

I gave that a try Scott and here is my new string:

=IF(ISNA(VLOOKUP($B5,'Table 1'!$A5:$G$14988,3,FALSE)) = TRUE, "not
equipped", VLOOKUP($B5,'Table 1'!$A5:$G$14988,3,FALSE))

I still get a return of 0
 

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