thepartydj

Active Member
Joined
Sep 23, 2004
Messages
260
Office Version
  1. 365
Platform
  1. Windows
I have a list of part numbers on sheet 1 column B
I also have another list of part numbers on sheet 2 column B
I want to do the following
If a part number on sheet 1 matches a part number on sheet 2, simply put an X in sheet 1 column J

All I know is I need to put a lookup formula of some kind in every cell of Column J on sheet 1

Thanks for your help!
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Re: Easy Look Up Help

one way

=IF(ISERROR(VLOOKUP(B1,Sheet1!B:B,1,0)),"","X")
 
Upvote 0
Re: Easy Look Up Help

Try, change ranges to match your data.
Code:
=IF(ISNUMBER(MATCH(B2,Sheet2!$B$2:$B$9,0)),"X","")
 
Upvote 0
Re: Easy Look Up Help

Try:
Code:
=REPT("x",--ISNUMBER(MATCH($F1,$B$1:$B$10,0)))
 
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,424
Members
448,896
Latest member
MadMarty

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