Using IF to find a value in a list

beckery1

New Member
Joined
Feb 23, 2005
Messages
5
I am trying to use the IF command to return a certain response if the value is contained in a list. For example if I have a list containing the numbers 1, 2, 3, and 4 and then I have a cell with a "5" in it. I want to create a formula that says look at the cell containing the 5 and if it is in my list return a "1" or else return a "0". I have tried many different approaches but have not been successful. Any ideas? Thanks.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
If the test value is in A1 and the list in A2:A5, I would type in B1 the following:

=IF(A1=A2:A5,"1","0")

I have tried the above formula with hitting CNTRL+SHFT+ENTR to make it an array formula but the formula then only work for the first value in the list. It is not recognizing any of the other values.
 
Upvote 0
If you don't actually want to return a text 0 or 1, but the actual numbers 0 and 1, try this:

=--(ISNUMBER(MATCH(A1,A2:A5,0)))
 
Upvote 0

Forum statistics

Threads
1,214,625
Messages
6,120,598
Members
448,973
Latest member
ksonnia

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