Currently I have a string as:
If InStr(cell.Value, "DRILL") <> 0 Then
cell.Offset(0, 7).Value = "POINT"
End If
It needs to read that if that cell value equals DRILL then write the value of POINT
Problem that I am encountering is that where the descriptions it is reading for values from has the word "Drilled" as in a tooth that was drilled (not a Point) that is shows another value.
So, how do I rewrite the above to ONLY pick up Drill and not Drilled?
Thanks in advance,
Tom
If InStr(cell.Value, "DRILL") <> 0 Then
cell.Offset(0, 7).Value = "POINT"
End If
It needs to read that if that cell value equals DRILL then write the value of POINT
Problem that I am encountering is that where the descriptions it is reading for values from has the word "Drilled" as in a tooth that was drilled (not a Point) that is shows another value.
So, how do I rewrite the above to ONLY pick up Drill and not Drilled?
Thanks in advance,
Tom