Hi gang,
If (B3 contains "wow", C3="wow", nothing)
Could someone help me with this statement. B3 contains text, a sentence, not just one word.
tks
jc
Hi gang,
If (B3 contains "wow", C3="wow", nothing)
Could someone help me with this statement. B3 contains text, a sentence, not just one word.
tks
jc

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
Try this in cell C3:
<code>
=IF(ISERROR(FIND("wow",B3)),"","wow")
</code>
The FIND function returns a number if "wow" is found in B3, and an error #VALUE if not.
Perfect. Thanks Hans.