SyntaxFix
Write A Post
Hire A Developer
Questions
You can determine if as certain word is found in a cell by using
If InStr(cell.Value, "Word1") > 0 Then
If Word1 is found in the string the InStr() function will return the location of the first character of Word1 in the string.
InStr()