Results 1 to 16 of 16

Custom sort without custom list

Threaded View

  1. #1
    Forum Expert
    Join Date
    04-23-2009
    Location
    Matrouh, Egypt
    MS-Off Ver
    Excel 2013
    Posts
    6,892

    Custom sort without custom list

    Hello everybody
    I have a sheet named "Data" which contains cutom list on which I need to sort column C in sheets("Report")
    I don't want to use custom list feature ( Application.AddCustomList )


    I need to depend on the custom list in range("B2:B8") in sheets("Data")

    I found UDF function but can't apply it
    This my try but I got an error

    Sub CustomSort()
        Dim Sh As Worksheet, LR As Long
        Set Sh = Sheets("Report")
        LR = Sh.Cells(Rows.Count, 1).End(xlUp).Row
        Sh.Range("A4:E" & LR).Sort Key1:=Range("C4"), OrderCustom:=SortItems, Header:=xlYes
    End Sub
    
    Function SortItems() As String
        Dim ArrSort() As Variant
        Dim RngSort As Range
        Dim I As Long
        
        With Worksheets("Data")
            Set RngSort = .Range("B1:B" & .Cells(Rows.Count, "B").End(xlUp).Row)
        End With
        
        ReDim ArrSort(1 To RngSort.Rows.Count)
        For I = 2 To UBound(ArrSort)
            ArrSort(I) = RngSort(I, 1)
        Next
    
        SortItems = Join(ArrSort, ",")
    End Function
    The error is at this line
    Sh.Range("A4:E" & LR).Sort Key1:=Range("C4"), OrderCustom:=SortItems, Header:=xlYes
    Sort method of range failed 1004
    Attached Files Attached Files
    < ----- Please click the little star * next to add reputation if my post helps you
    Visit Forum : From Here

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Custom Sort List
    By druid98 in forum Excel General
    Replies: 0
    Last Post: 10-10-2011, 07:51 PM
  2. [SOLVED] custom list does not sort
    By Matt Lunn in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 09-06-2005, 06:05 AM
  3. custom list does not sort
    By Matt Lunn in forum Excel Formulas & Functions
    Replies: 12
    Last Post: 09-06-2005, 04:05 AM
  4. [SOLVED] Excel sort by Fill Color by custom list sort
    By Dash4Cash in forum Excel General
    Replies: 2
    Last Post: 07-29-2005, 06:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1