Closed Thread
Results 1 to 13 of 13

Keeping blank rows when sorting

Hybrid View

  1. #1
    Registered User
    Join Date
    04-21-2008
    Posts
    8

    I've attached the worksheet

    Here is the worksheet I need to sort and keep the blank rows where they are. Any suggestions on how to do this better?
    Keep i nmind this is to display golf scores as they are coming in so it will be updated throughout the day.
    Attached Files Attached Files

  2. #2
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320
    the simplest way is to reference cells on another sheet
    do your sorting on the other sheet.

    see sheet 2
    Attached Files Attached Files

  3. #3
    Registered User
    Join Date
    12-26-2013
    Location
    Chicago, Il
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: Keeping blank rows when sorting

    I had an idea and I think I have the code that works. I created a series number column and used Ctrl down to find where the data ranges and blank lines were, then numbered each set as a series. It let me sort within the data sets and keep the blank lines exactly where they were.
    Sub SortBySeries()
    Dim FinalRow As Long
    Dim i As Long
    Dim RangeEnd As Long
    Dim RangeStart As Long
    Dim BlankSwitch As Boolean
    
    'determines last row of data in the desired range
    Range("a1048576").Select
    Selection.End(xlUp).Select
    FinalRow = Selection.Row
    Range("a:a").Insert shift:=xlToRight
    Range("b2").Select
    i = 2
    Range("a1").Value = 1
    BlankSwitch = False
    
    'creates a column with the series number for each set of data
    Do While ActiveCell.Row < FinalRow
    If BlankSwitch = False Then
    'tests for single line of data in the range, which will mess up the system
    If ActiveCell.Offset(1, 0).Value <> 0 Then
    RangeStart = Selection.Row
    Selection.End(xlDown).Select
    RangeEnd = Selection.Row
    BlankSwitch = True
    Else
    'numbering in filled range
    RangeStart = Selection.Row
    RangeEnd = Selection.Row
    BlankSwitch = True
    End If
    Else
    'numbering in range with no data
    RangeStart = Selection.Row + 1
    Selection.End(xlDown).Select
    RangeEnd = Selection.Row - 1
    BlankSwitch = False
    End If
    
    Range("a" & RangeStart, "a" & RangeEnd).Value = i
    i = i + 1
    Loop
    
    'sorts by series number to preserve blank rows and related data, then by 2 other criteria
    Cells.Select
        ActiveWorkbook.Worksheets(1).Sort.SortFields.Clear
        ActiveWorkbook.Worksheets(1).Sort.SortFields.Add Key:=Range("A:A"), _
        SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
        ActiveWorkbook.Worksheets(1).Sort.SortFields.Add Key:=Range("E:E"), _
        SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
        ActiveWorkbook.Worksheets(1).Sort.SortFields.Add Key:=Range("H:H"), _
        SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
        With ActiveWorkbook.Worksheets(1).Sort
            .SetRange Range("A1:P" & FinalRow)
            .Header = xlYes
            .MatchCase = False
            .Orientation = xlTopToBottom
            .SortMethod = xlPinYin
            .Apply
        End With
    
    End Sub

Closed Thread

Thread Information

Users Browsing this Thread

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

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