AlexDignan
New Member
- Joined
- Sep 9, 2016
- Messages
- 4
I'm stumped trying to get my formula to do what I want it to do. The formula I am using is:
and the goal is to search for the text 2003 in a cell. This formula works perfect for cell F4 when the text is something like: "Microsoft Windows Server 2003 R2 Enterprise".
What I need to edit this formula to do, is to search not only F4, but ALL cells in column F to see if any of them contain 2003. My first thought was to edit the formula to:
, but the evaluation changes the range from F:F to 0, which always returns true, no matter what the text box has.
I basically need a formula that will search a column, and if the text "2003" appears, I need it to spit back "NOT OK", if it does not contain 2003, it should return "OK".
Code:
=IF(ISNUMBER(SEARCH("2003",F4)),"NOT OK","OK")
What I need to edit this formula to do, is to search not only F4, but ALL cells in column F to see if any of them contain 2003. My first thought was to edit the formula to:
Code:
=IF(ISNUMBER(SEARCH("2003",F:F)),"NOT OK","OK")
I basically need a formula that will search a column, and if the text "2003" appears, I need it to spit back "NOT OK", if it does not contain 2003, it should return "OK".