Originally posted by: z0mb13
I dont quite get what you mean. If you want to find cells that has iii in it, you dont even care if its AAA or VVV or CCC. it is as simple as this:
=if(c2="iii",do whatever if correct, do whatever is false)
Originally posted by: 3cho
Originally posted by: z0mb13
I dont quite get what you mean. If you want to find cells that has iii in it, you dont even care if its AAA or VVV or CCC. it is as simple as this:
=if(c2="iii",do whatever if correct, do whatever is false)
what i am trying to do is take any particular cell, check to see what string it has, if that cell does not have AAA, VVV, or CCC in it, put OTH
Originally posted by: her209
=IF(OR(C2!="AAA", C2!="VVV",C2!="CCC"),"III")
Originally posted by: 3cho
trying to use an if statement:
this is what i am trying to accomplish, but i dont know what the right code is:
=IF(C2!=("AAA" or "VVV"" or ""CCC"),"III")
so i am trying to say if a cell does not have the texts aaa, vvv or ccc in it, but iii in that cell.
anyone?