Excel string revers

PHOTO EMBED

Wed Sep 17 2025 13:11:10 GMT+0000 (Coordinated Universal Time)

Saved by @szkohn #vba

Option Explicit 
 
Public Function ReverseString(Text As String) 
     
    ReverseString = StrReverse(Text) 
     
End Function 
content_copyCOPY

In a cell type = reversestring(D1) where D1 can be a cell address, or the value/text you want to reverse.

http://www.vbaexpress.com/kb/getarticle.php?kb_id=188