PowerUp Description
The pwrCONTAINS PowerUp function returns whether a string is contained within another string.
PowerUp Syntax
pwrCONTAINS(TextToFind, TargetString)
The pwrCONTAINS PowerUp function has the following arguments:
TextToFind – Required. This is the text to be searched for.
TargetString – Required. This is the text to search within.
Return Value
pwrCONTAINS will return TRUE if TextToFind is contained within TargetString. Else FALSE will be returned.
Remarks
None.
Example
=pwrCONTAINS("test text", A1)