Re: how to reverse cells value

Tech-Archive recommends: Fix windows errors by optimizing your registry



Public Function RevStr(Rng As Range)
If IsNumeric(Rng) Then
RevStr = StrReverse(Rng.Text) + 0
Else
RevStr = StrReverse(Rng.Text)
End If
End Function


Gord Dibben Excel MVP

On Sat, 24 Dec 2005 05:30:00 +0800, "Jaemun" <x> wrote:

>How to the number that seperate with commas e.g. 11,22,33,44 to become
>44,33,22,11 using formula functions?
>
.



Relevant Pages