Lookup string on two sheets

Bucket28

New Member
Joined
Sep 7, 2002
Messages
23
I'm sure this is simple....I hope
I have two excel sheets the first sheet has a inventory list on it with serial and part number....The second sheet is a list of serials I scanned for inventory....What formula could I write so that it would look for the serial from the second sheet see if it is on the first sheet and mark a cell in the first sheet to show it was found

Thanks for the help and sorry for the rambleing
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Hello Bucket28,
Assuming your serial numbers were in column A of sheet1 and column B of sheet2
you could use this formula in (say C1) of sheet1
Code:
=IF(COUNTIF(Sheet2!B:B,A1)>0,"Found","")
and then copy/paste this down column C as far as your serial numbers go.
 
Upvote 0

Forum statistics

Threads
1,214,659
Messages
6,120,786
Members
448,992
Latest member
prabhuk279

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top