macro to compare data in column A of sheet 1 with data in column A of sheet 2

N

nanda

Hi Excel Experts,

Please provide me a macro which will compare data of column A in
sheet 1 with data of Column A in sheet 2 and display "FOUND" [ in
column B ] next to identical data.

thanks in advance,
nanda
 
G

Guest

=if(countif(Sheet2!A:A,A1)>0,"Found","")

in B1 of sheet1, then drag fill down the column. Repeat similar in sheet2.

No need for a macro.
 
N

nanda

=if(countif(Sheet2!A:A,A1)>0,"Found","")

in B1 of sheet1, then drag fill down the column. Repeat similar in sheet2.

No need for a macro.

--
Regards,
Tom Ogilvy



nanda said:
Hi Excel Experts,
Please provide me a macro which will compare data of column A in
sheet 1 with data of Column A in sheet 2 and display "FOUND" [ in
column B ] next to identical data.
thanks in advance,
nanda- Hide quoted text -

- Show quoted text -

Thanks so much, it solved my issue, I appreciate your time.

Nanda
 

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