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
----------------------------
> Hi Tod
>
[quoted text clipped - 8 lines]
>>
>> Tod
Roger Govier - 20 Sep 2006 12:55 GMT
Hi Tod
You can copy the code and paste it into your Visual Basic Editor
(VBE) in a Standard Module located in your file.
To do this,
Alt + F11 (open VBE)
Ctrl + R (open Project Explorer)
Select the file name on the left
Insert > Module
Paste code in Module
On your Excel sheet
=Revtext(a1)
will reverse the contents of cell A1
David McRitchie has lots of useful help on his site at
http://www.mvps.org/dmcritchie/excel/install.htm
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Signature
Regards
Roger Govier
> Thanks Roger,
> Unfortunately I'm not yet up to speed in VBA or in how to incorporate
[quoted text clipped - 25 lines]
>>>
>>> Tod
Tod - 20 Sep 2006 21:51 GMT
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
Roger Govier - 20 Sep 2006 23:32 GMT
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.

Signature
Regards
Roger Govier
> 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