isnumber multiple criteria.

C

cbanks

=IF(ISNUMBER(SEARCH("WARN",J2)),"Warning","") is what i have.


but i also want it to search column n, and if the column n contains psnap, i
want it to put sales instead of warning. thanks a ton for any help
 
B

Bob Phillips

Do you mean

=IF(ISNUMBER(SEARCH("psnap",N2)),"Sales,IF(ISNUMBER(SEARCH("WARN",J2)),"Warn
ing",""))

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
B

Bob Phillips

Sorry, type

=IF(ISNUMBER(SEARCH("psnap",N2)),"Sales",
IF(ISNUMBER(SEARCH("WARN",J2)),"Warning",""))

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
Top