CONTAIN Function: Difference between revisions
From Planfix
No edit summary |
No edit summary |
||
Line 4: | Line 4: | ||
''Format:'' | ''Format:'' | ||
*'''CONTAIN(Where to look;What to look for)''' | *'''CONTAIN(Where to look;What to look for)''' | ||
Revision as of 03:45, 6 December 2019
This function returns the Boolean value "True" if the string it's searching for is found in a report column or analyzed the field. It is usually used in conjunction with the IF Function.
Format:
- CONTAIN(Where to look;What to look for)
where:
- Where to search - search range; this is generally a report column's "code" (the letter at the top of the column, A-Z, AA-ZZ, etc.) or a custom field
- What to search for - the string that's searched for in the specified range
Example:
IF(CONTAIN(H;"Clarification");G;"")
In this example, the formula checks the row it was entered in to see if it finds the string "Clarification" in column H. If it does, it outputs the value in column G of this same row. If it doesn't, it returns a blank output.