LOOKUP

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

Hi, I have a sheet with customer reference numbers and corrsponding managers
for the month of April. I have the same sheet for the month of January. I
need to see if there have been any changes to the managers by looking at the
customer reference number.

How do I do this?

Thanks
 
Hi

Assuming the Customer number is in A, and Manager in B on both sheets, then
on a third sheet, create a list of Customers in column A
In cell B1 of new sheet
=INDEX(Jan!B:B,MATCH(A1,Jan!A:A,0))=INDEX(Apr!B:B,MATCH(A1,Apr!A:A,0))
This will return a series of True and False
 
Sorry I didnt explain this properly. I need to know the name of the manager
against the reference number? So the April sheet would show: April Manager,
reference number, Jan Manager(being the formula column).

Can this be done. I have tried LOOKUP but this returns the wrong name?

Thanks
 
Hi Dave

If I understand you correctly, then
=INDEX(Jan!B:B,MATCH(A1,JAN!A:A,0))
 

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

Similar Threads

=TODAY() and HLOOKUP - help needed 2
Summary Worksheet. 1
Nested If 2
what is the formula to find increment ? 3
Lookups 6
Excel vba code to match duplicates 4
Lookup range help 2
Lookup function 4

Back
Top