View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
FJ FJ is offline
external usenet poster
 
Posts: 90
Default Help with MATCH function

Hi, Jacob, thanks for your help. :) Your formula worked great, too. :)



"Jacob Skaria" wrote:

Another way ..use COUNTIF...

in cell D2
=IF(COUNTIF(A:B,C2)=0,"No","Yes")


If this post helps click Yes
---------------
Jacob Skaria


"FJ" wrote:

Hi, I need help with a MATCH formula. I have three columns, A, B, and C. I
am entering the formula in column D. I want to look up data in column C and
see if there is a match in column A or column B and, if there is a match in
either of those columns, then I want to put the word €œYes€ in column D. If
not, then I want the word €œNo€ to appear. This is the formula I have so far
but it is yielding incorrect results:

=IF(OR(ISNUMBER(MATCH(C11,$A$11:$A$82,0)=TRUE),(IS NUMBER(MATCH(C11,$B$11:$B$82,0))=TRUE)),"Yes","No" )

Can anyone help? Thanks in advance for any information.