Find and report matching numbers in two worksheets

  • Thread starter Thread starter Colin Hayes
  • Start date Start date
C

Colin Hayes

Hi

I'm still having trouble with this one.

I have a column of numbers from A1 downwards. In a second worksheet , I
have another lot of numbers in column A.

I need a formula which will tell me which numbers in Sheet1 are also
present anywhere in Sheet2 , and which aren't. Perhaps by marking
'Match' or 'No Match' against the numbers in Sheet1.

Any help appreciated.

Thanks.
 
Try this on sheet1 B1:

=IF(COUNT(MATCH(A1,Sheet2!A:A,0)),"Match","No Match")

Copy down as needed
 
T. Valko said:
Try this on sheet1 B1:

=IF(COUNT(MATCH(A1,Sheet2!A:A,0)),"Match","No Match")

Copy down as needed

Hi

OK that's perfect. Worked first time.

Thanks!

Best Wishes
 

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

Back
Top