Custom sort order

vkorla

New Member
Joined
Dec 12, 2017
Messages
25
I have a list of products that need to be sorted in a very specific manner - the final sort order should be as described in the column titled "Overall Rank".

The problem I have is that I need to first sort the products by the column titled "Date". Then, for a subset of the products (namely E, F, G, H, I, J and K), I need these to be sorted first by the "Status" column as some statuses take precedence over others, even if that results in the final list not being purely sorted by date. The order of the products that should be sorted by status is defined in the column titled "Status Rank".

The column titled "Overall Rank" is what the final sort order should be.

How can I accomplish this?

Thanks in advance!

ProductDateStatusNumber of PhotosStatus RankOverall Rank
A9/26/19 10:0032
B9/26/19 10:0051
C9/27/19 10:0043
D9/28/19 10:0034
E9/29/19L237
F9/30/19M159
G10/1/19N1610
H10/1/19O348
I10/3/19P026
J10/3/19Q115
K9/24/19R0711

<tbody>
</tbody>
 
As an FYI, I do not ever anticipate having a list of more than 6000 or 7000 rows, if that makes any difference...
 
Upvote 0

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
.. curious as to why there appears to be a limit of 999 rows of data? Is there a way to make this work with a few thousand rows?
It is just the way I wrote the code & is easy to change. Changing the 3 blue sections below from originally having three 0s to each having four 0s will allow you to go to 9999 rows. Adding a fifth 0 would allow you to go to 99999 rows.

While making this change I did notice a couple of problems with my code that *could* cause it to order the rows incorrectly.

- Needed to add the red "|" you see below in front of that first set of blue 0s.
- Three places I should have used 999 instead of 1000
- The assumption about the maximum number of photos is also incorrect - it should be 899 not 999. I'm assuming you will have nothing like that in a single cell but if you could we can adjust the code for that as well by adding more 9s to those three 999 values.


Should be more robust now. :)

Rich (BB code):
Sub Sort_Em_v2()
  Dim a As Variant, b As Variant
  Dim SL As Object
  Dim i As Long, j As Long
  Dim s As String
  Dim bInserted As Boolean
  
  Const StatusPriority As String = "ABCDEFG"
  
  a = Range("A2:E" & Range("A" & Rows.Count).End(xlUp).Row).Value
  ReDim b(1 To UBound(a), 1 To 1)
  Set SL = CreateObject("System.Collections.Sortedlist")
  For i = 1 To UBound(a)
    If Len(a(i, 4)) Then SL.Add Format(InStr(StatusPriority, a(i, 4)), "000|") & Format(a(i, 3), "0.000000|") & 999 - a(i, 5) & Format(i, "|0000"), a(i, 1)
  Next i
  For i = 1 To UBound(a)
    If Len(a(i, 2)) Then
      bInserted = False
      For j = 0 To SL.Count - 1
        s = SL.GetKey(j)
        If Round(a(i, 2), 6) - Split(s, "|")(1) < 0 Then
          SL.Add Left(s, 4) & Format(a(i, 2), "0.000000|") & 999 - a(i, 5) & Format(i, "|0000"), a(i, 1)
          bInserted = True
          Exit For
        End If
      Next j
      If Not bInserted Then SL.Add Left(SL.GetKey(SL.Count - 1), 4) & Format(a(i, 2), "0.000000|") & 999 - a(i, 5) & Format(i, "|0000"), a(i, 1)
    End If
  Next i
  For i = 1 To UBound(b)
    b(i, 1) = SL.IndexOfValue(a(i, 1)) + 1
  Next i
  Application.ScreenUpdating = False
  Cells(2, "F").Resize(UBound(b)).Value = b
  Range("A2:F" & Range("A" & Rows.Count).End(xlUp).Row).Sort Key1:=Range("F2"), Order1:=xlAscending, Header:=xlNo
  Cells(2, "F").Resize(UBound(b)).ClearContents
  Application.ScreenUpdating = True
End Sub
 
Upvote 0
Thank you so much Peter! When I try to execute the macro, I see the error "Run-time error '13': Type mismatch" - did you also see this during your test?
 
Upvote 0
Thank you so much Peter! When I try to execute the macro, I see the error "Run-time error '13': Type mismatch" - did you also see this during your test?
No, if I was getting an error I wouldn't have posted the code. ;)

When you get the error & 'Debug', what line in the code is highlighted?
 
Upvote 0
Most likely you have at least one date/time in column A that is not actually a 'proper' date/time but rather a text entry.

Run the code again and when you get to the error, Debug again.
- Hover your cursor over the i in a(i,2) in that line. Suppose the pop-up says i=4 then that tells you that the (first) problem cell is B5 (not B4)
- Now hover over the a in a(i,2) in that line. The pop-up will most likely say something like
a(i,2) = "1/10/2019 11:00:00 AM"

If so, that is the problem because if that cell was a proper date/time, there would be no quote marks around the value.

Back in the worksheet if you put the formula =ISNUMBER(A5) it will most likely return FALSE. Perhaps all your date/time values in both columns are text, not actual date/times (numbers)?
 
Upvote 0
I have checked the formatting of both Auction End Date and Auction End Date 2 and they appear to be formatted correctly as date values
The cells are formatted as Date/Time, but the values in some of them are not. (You can enter text in such cells and that is what you have)
=ISNUMBER(B6) still returns FALSE.

If you widen out columns B & C you will see some values move to the right of the cells (proper Date/Times - that is, Numbers) and some values move to the left of the cells (Text).

Now that you have both columns formatted correctly, one way to force conversion of those text values is to select all of columns B:C and do a Find/Replace with Find what: M, Replace with: M, ensure 'Match entire cell contents' is not checked in Options -> Replace All
 
Upvote 0
Should I enter the value "M" in both the "Find what" and "Replace with" fields? That did not appear to do anything unfortunately
 
Upvote 0

Forum statistics

Threads
1,214,574
Messages
6,120,327
Members
448,956
Latest member
Adamsxl

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