I want to check a cell for specific text in a formula.
If it contains that text I want to select the next cell.
If it doesn't contain that text I want to perform some formatting.
I have tried
If StrComp("A1", "D:\I Stuff\Ser*", vbTextCompare) > 0 Then
'this is checking that "D:\I Stuff\Ser" does exist in A1...
ActiveCell.Offset(0, 0).Range("A1:H1").Select
It doesn't seem to select/find the string in the formula.