Match formulae needed

Natalia132

Board Regular
Joined
Mar 20, 2007
Messages
81
Hi there!

I need a formulae help.
I have to compare to sheets of data.
There's column C on sheet 1 with Purchase order numbers.
I would like to have a formulae that would search in Col. A, Sheet 2 and if it matches, than 1 or Y appear.

How is it possible to do?

Thanks in advance
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Yes, both sheets do include PO numbers, just need to compare them... and see if they match

=VLOOKUP(C2, Sheet3!A1:A379,1)

doesn't work..
 
Last edited:
Upvote 0
Hi,

Try MATCH
Code:
  A      B  C      
1 LIST 1    LIST 2 
2 AAA    Y  AAA    
3 BBB    N  EEE    
4 DDD    N  III    
5 GGG    Y  GGG    
6 EEE    Y  OOO    
7 FFF    N         
8 CCC    N         
Sheet1
[Table-It] version 09 by Erik Van Geit
Code:
RANGE FORMULA (1st cell)
B2:B8 =IF(ISNUMBER(MATCH(A2,$C$2:$C$6,0)),"Y","N")
[Table-It] version 09 by Erik Van Geit

kind regards,
Erik
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,251
Members
448,556
Latest member
peterhess2002

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