Saturday, April 20, 2019


Reverse Text
All you have to do just enter "rvrse" function in a cell and refer to the cell in which you have text which you want to reverse.

Note this macro works as a formula

Public Function rvrse(ByVal cell As Range) As String
rvrse = VBA.strReverse(cell.Value)
End Function

No comments:

Post a Comment