Find using IF

S

Sri

Hi,

I have all the product names in Column A, i want to search for a particular
value in that list using, IF condition something...
=IF(A1:A10="ProdA","Found","Not Found")

I know, look up formulas will help me, but is it possible to do it using IF
probably as a array ?
 
D

Dave Peterson

So ProdA can appear in any of those cells (any one or all 10?)

=if(countif(a1:a10,"proda")>0,"Found","not found")
 
B

Bob Phillips

=IF(ISNUMBER(MATCH("ProdA",A1:A10,0)),"Found","Not Found")

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
Top