Works a treat, thanks. How about if I want a 3rd condition adding as below exampleExcel Formula:=IF(AND(ISNUMBER(SEARCH("CORE",A2)),B2>=2),"Good","Need")
should do it.
So can a 3rd not be added, i.e. B is >=2 and C is >=5You've got overlap with the 1st and 3rd conditions as you've used >=2 and <=2 so both would include 2.
Ah, maybe I haven't explained it well enough.What I'm saying is that with the conditions as you have written them there, if B=2 and C>=5, the answer could be either Good or Need, so which should it be?
LOL, and no Core doesn't have to be factored inYeah, that is not what was in your picture!
Do we still need to check if Core is part of column A?
=IF(B2>=2,"Good",IF(C2>=4,"Need","Not required"))
If B is less than 2 AND C is equal or greater than 4 then "Need"
If B is less than 2 AND C is equal or less than 4 then "Not Required"