See if that works for you.
Sub FINDSTRING()
Dim TextString As Variant, LastRow As Long
Dim area As Variant
On Error Resume Next
LastRow = Cells(Cells.Rows.Count, "A").End(xlUp).Row
For Each area In Range("A2:A" & LastRow)
If Left(area.Value, 3) = "BL0" Then
area.Offset(0, 1) = Left(area.Value, 3)
Else
area.Offset(0, 1) = ""
If Left(area.Value, 3) = "LO0" Then
area.Offset(0, 1) = Left(area.Value, 3)
Else
area.Offset(0, 1) = ""
If Left(area.Value, 3) = "LOS" Then
area.Offset(0, 1) = Left(area.Value, 3)
Else
area.Offset(0, 1) = ""
End If
End If
End If
Next
End Sub
Regards
John