madocar Member Aug 7, 2013 #1 Hello, Can you help pls. In column A I have numbers. Column B consists of a lot of numbers as well. And I want to look up if number in A1, A2 ... is in B1:B500 array. If value in A1 is in B1:B500 array I want to see "yes" as an output
Hello, Can you help pls. In column A I have numbers. Column B consists of a lot of numbers as well. And I want to look up if number in A1, A2 ... is in B1:B500 array. If value in A1 is in B1:B500 array I want to see "yes" as an output
Smallman Excel Ninja Aug 7, 2013 #2 Hi Madocar It is hard to know from your question whether you want to test one condition or both at the same time. Here is a simple solution for one at a time. =IFERROR(IF(MATCH(A1,$B$1:$B$500,0)>1,"YES"),"NO") There may be better ways to represent this though. But it gets the conversation started. Take care Smallman
Hi Madocar It is hard to know from your question whether you want to test one condition or both at the same time. Here is a simple solution for one at a time. =IFERROR(IF(MATCH(A1,$B$1:$B$500,0)>1,"YES"),"NO") There may be better ways to represent this though. But it gets the conversation started. Take care Smallman