how to eliminate N/A error in vlookup?

L

lina

hi,

how can i get rid of the N/A error when using vlookup formula?

is it a must to put "false" if i want to get the exact figure i want?

i tried to remove "false" in the formula. it did give me some figure
but not the one i want...

how to solve this problem
 
K

KLassman

You might want to change from vlookup to Index/Match. If you do, the
do a Search on Index/Match at the first page of this Forum. You wil
find a couple different ways to solve the N/A problem. I had th
same question a couple months ago
 
G

Guest

Nest your vlookup formula within an IF and ISERROR
formula.

Eg. =IF(ISERROR(VLOOKUP(A1,B2:F25,3,FALSE),"",VLOOKUP
(A1,B2:F25,3,FALSE))

This formula says IF the vlookup returns an error (ie.
N/A) then show "", else return the true result of the
vlookup.

Hope this helps, Paddy
 

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

Similar Threads

VLOOKUP returning #N/A ?? 3
VLOOKUP returning #N/A result 2
Vlookup - N/A 4
VLOOKUP #REF error 3
VLOOKUP - 0 instead of # N/A 9
Error message #N/A 5
Remove #N/A Error 3
VBA word change keys 0

Top