Search the Lookup table and return result formula

Brew

Well-known Member
Joined
Sep 29, 2003
Messages
1,569
How do I create a formula that checks to see if the value in H4 equal any value in the vlookup table m4:m48, if so, then Y, if not then N. I tried the following formula but it gives me N result for both conditions.
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
dK:

Try this and let me know if it works..

=IF(ISERROR(VLOOKUP(H4,$M$4:$M$8,1,FALSE)),"N","Y")

Hope this helps..
 
Upvote 0
Hi

consider

=IF(COUNTIF($M$4:$M$8,H4),"Y","N")

Wigi
 
Upvote 0
.. or this possibly?
=IF(ISNUMBER(MATCH(H4,M4:M48,0)),"Y","N")
 
Upvote 0
Thanks everyone for your assistance on this. Wigi, i went with your solution.
 
Upvote 0

Forum statistics

Threads
1,215,583
Messages
6,125,665
Members
449,247
Latest member
wingedshoes

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