Reverse text

  • Thread starter Thread starter Tod
  • Start date Start date
T

Tod

Hi
I need a formula (or other method) to reverse the text in a cell?
Eg "Paper clip" would become "pilc repaP".
Any suggestions?

Tod
 
Thanks Roger,
Unfortunately I'm not yet up to speed in VBA or in how to incorporate a
piece of such coding into standard Excel.
How can I cut and paste and use something like:

Function RevText(S As String) As String
Dim Ndx As Integer
For Ndx = Len(S) To 1 Step -1
RevText = RevText & Mid(S, Ndx, 1)
Next Ndx
End Function

into standard Excel?

Tod
----------------------------
 
Thanks Roger, I got it to work.
I'm going to find it very useful in tasks like 'parsing' text and tables
that I have copied and pasted from WebPages, but that still needs some
tidying up in Excel, often because it contains a smattering of
unidentifiable symbols.
Tod
 
Hi Tod
Thanks for the feedback and glad you got it to work.
The real thanks though are to Chip and Harlan and others who have posted
the code.
 

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

Back
Top