La funzione VBA RTRIM restituisce una stringa dopo aver rimosso gli spazi a destra della stringa.
RTrim(testo)
Rimuovi gli spazi solo dal lato destro della riga:
Sub RTrimExample() MsgBox RTrim(" test") 'Restituisce: " test" MsgBox RTrim("test ") 'Restituisce: "test" MsgBox RTrim(" test ") 'Restituisce: " test" MsgBox RTrim(" test test ") 'Restituisce: " test test" End Sub