Invert String In Cell

dirk1965

Board Regular
Joined
Feb 18, 2004
Messages
241
How can I invert a string inside a cell? Thx

Data in Cell A1:

4189 > 3743 > 2040 > 949 > 195 > 5

Result:

5 > 195 > 949 > 2040 > 3743 > 4189
 
Hi
UDF
paste code onto standard module and use in cell

=dirk(A1) or =dirk(A1,">")
Code:
Function dirk(txt As String) As String
Dim i, a, temp
a = Split(txt, delim)
For i = UBound(a) To LBound(a) Step -1
    temp = temp & Trim(a(i)) & " " & delim & " "
Next
dirk = Left(temp, Len(temp) - 2)
End Function
 
Upvote 0
1) Hit Alt + F11 to open VB editor
2) go to Insert -> Module and paste the code there
3) click x to clese the window to get back to Excel

enter the formula in the cell
 
Upvote 0
Here's a similar concept, using this:
http://www.devx.com/vb/Article/21529/0/page/2

Code:
Public Function foobar(ByRef strIn As String) As String
Dim tmpArr() As String
tmpArr = Split(Range("a1").Value)
Call Reverse(tmpArr)
foobar = Join(tmpArr, " ")
End Function


Public Sub Reverse(ByRef lParams() As String)
Dim i As Long, tmp As String
For i = 0 To UBound(lParams) / 2 - 1
    tmp = lParams(i)
    lParams(i) = lParams(UBound(lParams) - i)
    lParams(UBound(lParams) - i) = tmp
Next i
End Sub
In a normal code module and this on the worksheet:

=foobar(a1)
 
Upvote 0
I'm using NateO's script and copying it down to other cells, but it repeating the same value over again from cell A1. I thought it might have to do with the range setting, but it still had no affect.

Any ideas?
 
Upvote 0
Whoops, my mistake! I hardcoded the Range, here:

tmpArr = Split(Range("a1").Value) :oops:

Try the following:

Code:
Public Function foobar(ByRef strIn As String) As String
Dim tmpArr() As String
tmpArr = Split(strIn)
Call Reverse(tmpArr)
foobar = Join(tmpArr, " ")
End Function


Public Sub Reverse(ByRef lParams() As String)
Dim i As Long, tmp As String
For i = 0 To UBound(lParams) / 2 - 1
    tmp = lParams(i)
    lParams(i) = lParams(UBound(lParams) - i)
    lParams(UBound(lParams) - i) = tmp
Next i
End Sub
Book3
ABCD
1test thisthis test
24189 > 3743 > 2040 > 949 > 195 > 55 > 195 > 949 > 2040 > 3743 > 4189
322 > 99999 > 1 > 43 > 783 > 4444 > 783 > 43 > 1 > 99999 > 22
Sheet1


Sorry about that! :-P
 
Upvote 0
No worries... I'm just glad it works. It saves me a ton of time and blurred vision! :o Thanks again!
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top