La funzione VBA STRREVERSE restituisce una stringa di caratteri dopo aver modificato l'ordine dei caratteri.
StrReverse(valore)
Cambia l'ordine dei simboli di valori diversi:
Sub StrReverseExample() MsgBox StrReverse("Excel") 'Resi: lecxE MsgBox StrReverse("www.moonexcel.com.ua") 'Resi: au.moc.lecxenoom.www MsgBox StrReverse(1234) 'Resi: 4321 MsgBox StrReverse("stats") 'Resi: stats MsgBox StrReverse(True) 'Resi: eurT End Sub