I know theres a way to look if a cell value contains a certain string. I know some programming languages use % … %.
If shtVO.Cells(Row, 1).Value <> "%MIG%" Then
shtVO.Cells(Row, 1).Value = shtVO.Cells(Row, 1).Value + "MIG"
End If
I want to see if my Cell A already contains MIG, if it does it shouldn’t update the value, if it doesn’t contain MIG, it should update the current value with MIG.
Try this