This repository was archived by the owner on Oct 26, 2021. It is now read-only.
Does String Exist in Target #8
WayneLambert
announced in
Excel Guides
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Formula to check whether a string meets a given convention. The formula answers the question, "does the
string to testexist in theWithinText Column?"=IF(ISERROR(SEARCH("*string to test*",[@[WithinText Column]],1)),"No","Yes")SEARCHgives position of character where the tested string beginsISERRORfunction turns the numeric value of theSEARCHfunction it into a Boolean resultIFfunction assigns a chosen result based upon theISERRORbeing eitherTRUEorFALSE("No" or "Yes" in the example)Beta Was this translation helpful? Give feedback.
All reactions