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

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
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

Forum statistics

Threads
1,223,898
Messages
6,175,274
Members
452,628
Latest member
dd2

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