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

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
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,215,360
Messages
6,124,489
Members
449,166
Latest member
hokjock

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