Trying to consolidate data from another workbook

G

Guest

basically, the task at hand is to have a formula in workbook 'a' search
workbook 'b' for specific data, and total up a sum.

sort of. what's happening is the workbook a is a large list of different
customers, and workbook b is a list of sales orders, more or less. Now, both
are huge documents, and some significant issues lie in the way that the sales
orders are recorded (ie: while customer 'john smith' exists in both
workbooks, workbook a will have 'john smith' and b might have 'j smith' or
some other sort of variation)

I was trying to run an 'if' statement for this, and it makes sense in
programming language (at least to me) but because i've got text based values,
it returns false.

the shear number of different data types i need to pull is making it unable
to do a vlookup. since the sales orders list multiple products, and the
workbook a is showing the product family.

i have no idea if this even makes sense to explain. but if anyone gets what
i'm after, any help would be great. Thanks!
 
P

Pete_UK

You want to match some data on one sheet with corresponding data on
another sheet. For this to happen, you need to have exact matches on
both sheets. John Smith will not match with J Smith without some
manipulation of the data, and you may well find that there are many
variations in the spelling of this name, so that could take some time.

It is very common to have a unique customer number, rather than rely
on name, and then this could be the data field on which to search. As
you are going to have to manipulate the data in some way, you might
think about setting up a unique customer number now to make it easy
for yourself in the future.

Hope this helps.

Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top