La fonction VBA LTRIM renvoie une chaîne après avoir supprimé les espaces à gauche de la chaîne.
LTrim(texte)
Coupez les espaces uniquement sur le côté gauche de la ligne:
Sub LTrimExample()
MsgBox LTrim(" test") 'Renvoie : "test"
MsgBox LTrim("test ") 'Renvoie : "test "
MsgBox LTrim(" test ") 'Renvoie : "test "
MsgBox LTrim(" test test ") 'Renvoie : "test test "
End Sub