Reverse word

M

macropod

Hi Amnon,

See reply to your similar post in microsoft.public.word.conversions.

For Excel, simply change the calling macro's code to:
Sub ReverseString()
Selection.Value = Reverse(Selection)
End Sub
 
G

Gord Dibben

Public Function RevStr(rng As Range)
RevStr = StrReverse(rng.text)
End Function

=RevStr(cell)


Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top