Colega celsoyano,veja se isso resolve:
Sub Remover_Espaço()
Dim ul As Long
ul = Plan2.Range("B" & Rows.Count).End(xlUp).Row
For Each cel In Plan2.Range("B1:B" & ul)
If cel.Value <> "" Then
Select Case Asc(Left(cel.Text, 1))
Case Is <= 9
cel.Value = Mid(cel.Text, 2, Len(cel.Text))
cel.Value = Trim(cel.Text)
Case Is > 9
cel.Value = Trim(cel.Text)
End Select
End If
Next
MsgBox "Feito!", vbExclamation
End Sub
Colega Edson, que método você usou para achar o caracter "intruso"??
___________________________________________________________________________________________
Se a resposta atendeu sua dúvida, por favor, clique no Gostei e marque o Tópico como [Resolvido].
Att.
André Arruda
Postado : 28/09/2018 9:46 am