Vlookup problem

pete4monc

Board Regular
Joined
Jan 12, 2014
Messages
85
Office Version
  1. 365
Platform
  1. Windows
Hi gents
I am trying to lookup the order number in one spreadsheet (Input Sheet, column B) matching it with the same number on another spreadsheet (CustomerService, column B) and then return the date it was finished on the CustomerService sheet, column J. But it keeps coming up with #N/A and if I put in iferror, it returns nothing?
On both sheets the order numbers are in columns B and the date on the customerservice sheet is in column J
=IFERROR(VLOOKUP(B5,CustomerService1!A5:I20,9,FALSE),"")

Thanks in advance.
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
In that case use
=VLOOKUP(B5,CustomerService1!B5:I20,8,FALSE)
 
Upvote 0
There must've been something with the formatting in the original column. I have created a completely new column and put in the formula and the correct dates come up where applicable but now the 00/01/1900?

Dash3.PNG
 
Upvote 0
That date means that it found the value in col B, but col I was blank. What do you want to do in that situation?
 
Upvote 0
Ok, how about
=IFERROR(1/(1/VLOOKUP(B5,CustomerService1!B5:I20,8,FALSE)),"")
 
Upvote 0
Ok, how about
=IFERROR(1/(1/VLOOKUP(B5,CustomerService1!B5:I20,8,FALSE)),"")

I tried
=IFERROR(VLOOKUP(B12,CustomerService1!B12:J27,8,FALSE),"")
It didn't work

BUT yours did, it Works a treat now !!!

Thanks for your quick response and help guys, I really appreciate it. @Fluff and @denzo36
 
Upvote 0

Forum statistics

Threads
1,215,558
Messages
6,125,504
Members
449,235
Latest member
Terra0013

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