K
Karen53
Hi,
How would I catch the error if the string does not have a space in it and
save the value as it is in that case?
For iCtr = 2 To OldLusedrow
OldString = ws.Range("B" & iCtr).Value
ws.Range("A" & iCtr).Value = Left(OldString, InStr(OldString, "
") - 1)
Next
How would I catch the error if the string does not have a space in it and
save the value as it is in that case?
For iCtr = 2 To OldLusedrow
OldString = ws.Range("B" & iCtr).Value
ws.Range("A" & iCtr).Value = Left(OldString, InStr(OldString, "
") - 1)
Next