Link to home
Start Free TrialLog in
Avatar of Tom Farrar
Tom FarrarFlag for United States of America

asked on

Matching two lists of numbers

I have two spreadsheets that have a column with numbers in them.  I want to match the numbers where they are the same.  What is the best way to do this?  I have attached a spreadsheet example where i have shown the two (example) number lists on different tabs.  Thanks.  - Tom
EE.xlsx
Avatar of Donald Yates
Donald Yates

Not sure exactly what you're asking.  If the number in the first column matches the number in the second column, what should happen?

One easy way is to put one set in numerical order, number them in the next column and use vlookup.  =VLOOKUP(C2,'List 1'!C2:D5,2,FALSE)

10      1
20      2
45      3
65      4

23      #N/A
10      #N/A
45      3
67      #N/A
99      #N/A
85      #N/A
SOLUTION
Avatar of Donald Yates
Donald Yates

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Tom Farrar

ASKER

Yea, not sure what I am asking either.  Let me clarify...  I have billings and payments on different spreadsheets, and I am trying to match up payments to billing (knowing there can be a payment that could match up with more than one billing, and vise versa.)  I have used the VLOOKUP as you suggested and it provides some help, and maybe that is the best approach.  Was wondering if there were other ways that could work better since this is probably a common problem.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Actually both solutions were good.  Thanks to both of you.  - Tom