A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
You can try this CF formula
=ISNUMBER(SEARCH("Hold",A1)+SEARCH("New",A1))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have a cell that contains the following text, "HOLD-PO NEW". I have cells with many different iterations ("HOLD-PO OLD","HOLD-PO", "HOLD-AR", "GOOD-PO"), but contains basically the same information. How can I conditional format the cell by saying: highlight if cell contains the words "HOLD" AND "New".
I've been looking all over the place I haven't been able to figure it out.
I tried
=AND(A1="HOLD", A1="NEW") and that didn't work.
I tried with the * :
=AND(A1="HOLD*", A1="*NEW") and that didn't work
Please help!
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Hi,
You can try this CF formula
=ISNUMBER(SEARCH("Hold",A1)+SEARCH("New",A1))
Thank you very much Mike. That worked perfectly