La funzione VBA TRIM restituisce una stringa di caratteri dopo aver rimosso gli spazi a sinistra e a destra della stringa.
Trim(testo)
Rimuoviamo gli spazi extra dall'inizio e dalla fine della riga:
Sub TrimExample1() MsgBox Trim("test") 'Resi: "test" MsgBox Trim(" test") 'Resi: "test" MsgBox Trim("test ") 'Resi: "test" MsgBox Trim(" test ") 'Resi: "test" MsgBox Trim(" test test ") 'Resi: "test test" MsgBox Trim(" ") 'Resi: "" End Sub
Rimozione di spazi extra all'interno di una riga:
Sub TrimExample2() MsgBox WorksheetFunction.TRIM(" test test ") 'Resi: "test test" End Sub