A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Surround your FIND or SEARCH with an IFERROR
=IFERROR(FIND(......),FALSE)
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I want to find text in a string, and return TRUE/FALSE. As far as i can tell, FIND and SEARCH will return an #VALUE! error if the text is not found, which means that I have to use a two-step approach, something like ISERROR(SEARCH(...)). That seems unnecessarily complicated. Is there a simpler way?
Thanks.
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
Surround your FIND or SEARCH with an IFERROR
=IFERROR(FIND(......),FALSE)
Its new in versions 2007 onwards.
Thanks. I didn't know about the IFERROR function.