Results 1 to 6 of 6

Filter - sort by criteria in multiple columns using Colour..

Threaded View

  1. #1
    Registered User
    Join Date
    08-30-2012
    Location
    Glasgow, Scotland
    MS-Off Ver
    Excel 2010
    Posts
    83

    Filter - sort by criteria in multiple columns using Colour..

    Hi,

    I'm trying to filter a list based on the fill colour of a cell.

    From the sheet attached, I want to filter it sothat the RED fills appear at the top and then the striped fill. I want to start with the right most column (T), and then repeat for the next column (S). I wish to repeat this from every column from T all the way to D. This will mean that the column with red in Column D will be at the top, and then ones in Column E and so on.

    I recorded the macro from filtering and got this (have changed activesheet to 'WS')

    myWS.AutoFilter.Sort.SortFields.Clear                                        
    	With myWS.AutoFilter.Sort.SortFields.Add _
    	(Range("T3:T49"), xlSortOnCellColor, xlAscending, , xlSortNormal)
    	.SortOnValue.Color = RGB(255, 0, 0)
    	.SortOnValue.PatternColor = RGB(242, 242, 242)
    	.SortOnValue.Pattern = 14
    End With
    With myWS.AutoFilter.Sort
    	.Header = xlYes
    	.MatchCase = False
    	.Orientation = xlTopToBottom
    	.SortMethod = xlPinYin
    	.Apply
    End With
    What I want to do is substitute
    Range("T3:T49")
    for
    Range(Cells(3,20) & ":" & Cells(49,20))
    or
    range(Cells(RowStart,ColCurrent) & ":" & Cells(RowEnd,ColCurrent))

    then I can increment the column by -1 for each loop.

    I'm afraid my VBA skills are still very patchy and I haven't grasped how to do this, and looking at other posts has confused me further!

    I'm sure there is a far more elegant solution to what I am trying to do, which I would be very much appreciative of, but I would also like to know how to achieve the above so that I can use the record macro as a base!



    To give a fuller picture, I should stipulate that the last column will not always be Col.T, and the row lengths will vary, which is why I need to use variables. Also, The step before this is to search for a known word (OUTPUT), and then sort the table as described above. There are many of these tables, so that is another loop which I will be adding once I get this first part done!

    The macro in the attached sheet is a 'Work in Progress', so please excuse!

    Any help would be greatly appreciated!

    J
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Sort by multiple columns with sort criteria cell dependent
    By BRISBANEBOB in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 01-24-2014, 02:22 AM
  2. [SOLVED] Filter to show multiple columns that satistfy single criteria
    By singerj6 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 01-13-2014, 02:34 PM
  3. Filter Excel Data using vba multiple criteria multiple columns
    By pmyk in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-28-2013, 01:32 AM
  4. Replies: 2
    Last Post: 06-15-2012, 05:34 PM
  5. Replies: 1
    Last Post: 02-03-2006, 12:55 PM

Tags for this Thread

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