Question

I have two workbooks full of products, both with over 1000 rows. I need some way to find all of the products that are in one but not another.

One of the workbooks is my English one and the other a Spanish, I just need to find out what is in the English one that isn't in the Spanish one and vice versa.

There is the same field called part_no in both tables

Was it helpful?

Solution

If you want to avoid VBA, you can use the MATCH function. This function will return the location of the first argument in the array of the second argument. If it is not found MATCH will return NA.

Hope this helps!

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top