Vlookup for this?

Antonow

New Member
Joined
Aug 19, 2015
Messages
39
Hello guys,I need a bit of help! ok, i've been trying to do this without macros, and i'm going nuts.I have 2 workbooks, one with codes that need to be added to the current one I have here. The thing is, I need to check and copy the new codes to our current workbook, but i've been doing it manually.. and it's driving me nuts.I don't really know how to use Vlookup between different workbooks, so what i've done is, make a new worksheet, copy both updated (Column A) and current codes (Column B) and I was checking one by one, and putting the ones in a column of codes that need to be added. (column C) and it's a long list.So, how can I make a quick thing like If column A has codes that doesn't exist in column B, Copy them to Column C.I know it's a mess, but i need to do this fast and work in a permanent or long term solution later.Thanks for the helpIs there a quick fix for this?
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Try something like:

in column C
=IF(COUNTIF($B$2:$B$999,A2)=0,A2,"")
copy this formula down
change the B column range to suit your needs, then you can filter on Column C for any non blanks, and those will be the codes you need to add
 
Upvote 0
What i've came up is.. Updated in column A, current Column B, and in column C i've used =VLOOKUP(B3;$C$3:$C$218;1;FALSE)

So when it doesn't find any matching value it gives #N/D and I know that the code from column A does not exists.

Is that right?
 
Upvote 0
If you don't need to know which codes are the new ones, and just need a new list, you could:

copy both sets to the same column (one under the other)
Use the Data tab | Sort & Filter group | Advanced option, check the "Unique Records Only" and "Copy to new location" and give it a new column to paste the results to.
 
Upvote 0

Forum statistics

Threads
1,223,907
Messages
6,175,300
Members
452,633
Latest member
DougMo

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