M macropod Feb 22, 2010 #2 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
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 Feb 22, 2010 #3 Public Function RevStr(rng As Range) RevStr = StrReverse(rng.text) End Function =RevStr(cell) Gord Dibben MS Excel MVP
Public Function RevStr(rng As Range) RevStr = StrReverse(rng.text) End Function =RevStr(cell) Gord Dibben MS Excel MVP