Module Question

MFish

Board Regular
Joined
May 9, 2019
Messages
76
Hi there,

I'm trying to sort my table off of this code and it works great with letters to sort alphabetically, but numerically... It sucks.

Code:
Sub SortTable()


Range("B40").Select

    Set BillsT = Range(ActiveCell, ActiveCell.End(xlDown).Offset(0, 5))
BillsT.Select
Worksheets("Master Data Sheet").Range(Selection, Selection).Sort _
        key1:=Worksheets("Master Data Sheet").Range(ActiveCell, ActiveCell)
    

End Sub

It will easily sort out, A to AA to BA to CF, etc. No problem. But, with numbers it doesn't. I have values like 1-1, 1-2, 2-1, 11-1 and it will sort 1-1, 1-2, 11-1, 2-1. I've tried to add a space between the numbers and "-" to see if the sorting will go numerically by 1, 2, 3, etc. but it still sorts it out like A, AA, B, BB format, if that makes sense. How do I get it to sort in order how I want it to?
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
One option could be to separate the numbers in 2 new columns by the "-" and sort the information but with the 2 new columns:



Code:
Sub SortTable()


    Dim BillsT As Range, datos As Range
    
    Range("B40").Select
    Application.DisplayAlerts = False
    Set BillsT = Range(ActiveCell, ActiveCell.End(xlDown).Offset(0, 5))
    BillsT.Columns(1).TextToColumns Destination:=BillsT.Cells(1, 1).Offset(0, 6), DataType:=xlDelimited, _
        TextQualifier:=xlNone, ConsecutiveDelimiter:=False, Tab:=False, _
        Semicolon:=False, Comma:=False, Space:=False, Other:=True, _
        OtherChar:="-", FieldInfo:=Array(Array(1, 1), Array(2, 1)), TrailingMinusNumbers:=True


    Set datos = BillsT.Resize(BillsT.Rows.Count, BillsT.Columns.Count + 2)
    datos.Sort key1:=BillsT.Cells(1, 1).Offset(0, 6), order1:=xlAscending, _
               key2:=BillsT.Cells(1, 1).Offset(0, 7), order2:=xlAscending, Header:=xlNo


    datos.Columns(7).Resize(datos.Rows.Count, 2).ClearContents
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,830
Messages
6,121,835
Members
449,051
Latest member
excelquestion515

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