Matching values in 2 columns

R

richzip

I have 2 spreadsheets with various column. I would like to see if it's
possible tos et up a formula that will:

1. Look at each number in a specified column in sheet 1.
2. Attempt to find that same value somewhere in a specified column in sheet 2
3. If it doesn't find that number in sheet 2, it woud either highlight the
value in sheet 2, or put a "no" in another column also in sheet 1.
4. Repeat this for each number in sheet 1.
 
D

Dave Peterson

Say your list of data is in column A of sheet1.

And the list to check against is in column X of sheet2.

You could use this formula in column B.

=isnumber(match(a1,sheet2!x:x,0))
and drag down as far as you need.

You'll see True if there's a match and False if there is no match.

Chip Pearson has lots of techniques to work with duplicates:
http://www.cpearson.com/excel/Duplicates.aspx
 

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