ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Sorting (https://www.excelbanter.com/excel-programming/277057-sorting.html)

LC[_5_]

Sorting
 
Hi,

Is there a way to sort a list by the last 2 letters of a
word in VBA?

Thank you,
LC

J.E. McGimpsey

Sorting
 
One way:

In a blank column (say D), enter:

D2: =RIGHT(A2,2)

and copy down. Then sort on that column, which can be hidden if you
wish.

In article ,
"LC" wrote:

Hi,

Is there a way to sort a list by the last 2 letters of a
word in VBA?

Thank you,
LC


J.E. McGimpsey

Sorting
 
Whoops- didn't see the VBA (which I should have, given the group,
sorry!):

Same answer, but using VBA to populate the column:

Public Sub SortLastTwo()
Dim rng As Range
Set rng = Range("D2:D" & _
Range("A" & Rows.Count).End(xlUp).Row)
With rng
.Value = "=RIGHT(A2,2)"
.Item(1).Sort Key1:=.Item(1), Header:=True
.Clear
End With
End Sub




In article
,
"J.E. McGimpsey" wrote:

One way:

In a blank column (say D), enter:

D2: =RIGHT(A2,2)

and copy down. Then sort on that column, which can be hidden if you
wish.

In article ,
"LC" wrote:

Hi,

Is there a way to sort a list by the last 2 letters of a
word in VBA?

Thank you,
LC



All times are GMT +1. The time now is 08:56 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com