I\'m trying to find something with a wild card search in a cell value. If the value in sheet(\"FC\")Range(\"I2:I\" & LastRowC) - match with the Sheets(\"Instr\"),Range(
You could use the Like operator. For example:
Like
If fcphc.Value Like "*" & icel.Value & "*" Then
If you wanted the comparison to work both ways:
If _ fcphc.Value Like "*" & icel.Value & "*" Or _ icel.Value Like "*" & fcphc.Value & "*" _ Then