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

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.

Natalia132

Board Regular
Joined
Mar 20, 2007
Messages
81
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

christikae

New Member
Joined
Jun 20, 2008
Messages
5
I guess I don't exactly understand what you are trying to do.
 
Upvote 0

erik.van.geit

MrExcel MVP
Joined
Feb 1, 2003
Messages
17,832
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,191,581
Messages
5,987,465
Members
440,097
Latest member
Wint

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
Top