Get rid of the 0 in a Vlookup

PvtSmity

New Member
Joined
Jul 26, 2016
Messages
13
Hi All,
I hope that you can help. I have 4 tabs on this sheet. 1st tab is my shipping info that I drop into the sheet and 3 of them have info I need to reference from. The problem is I keep getting 0 on half my look ups. So I tried to use =IFNA(IF(VLOOKUP(A2,'Redding '!A:P,16,FALSE)=0,"",VLOOKUP(A2,'Redding '!A:P,16,FALSE)),"") Which need deed did work but how do I combine the other 2 tabs to find all the info I need. So I tried this way

=IFNA(IF(MATCH(A2,'Redding '!A:A,0),VLOOKUP(A2,'Redding '!A:R,15,FALSE),IF(MATCH(A2,'Mound City-Tecate'!A:A,0),VLOOKUP(A2,'Mound City-Tecate'!A:Q,15,FALSE),IF(MATCH(A2,'Tecate-Sewing'!A:A,0),VLOOKUP(A2,'Tecate-Sewing'!A:Q,15,FALSE),""))),"")

But then I'm getting those darn 0's again.
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Try this

=IFERROR(VLOOKUP(A2,Redding!A:O,15,0),IFERROR(VLOOKUP(A2,'Mound City-Tecate'!A:O,15,0),IFERROR(VLOOKUP(A2,'Tecate-Sewing'!A:O,15,0),"Does not exist")))
 
Upvote 0
I'm glad to help you. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,279
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top