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

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
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,029
Messages
6,122,757
Members
449,094
Latest member
dsharae57

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