grouping of data

Manexcel

Board Regular
Joined
Dec 28, 2015
Messages
128
Office Version
  1. 365
Platform
  1. Windows
I am using MsExcel 2016.

On sheet test11 I have a list of (12000+ rows). Headed by Name and Grade and date. Data starts in A2

On sheet sheet2 I wish to group that data by say; name.

test 1 example data (the name field does have the surname, first name middle name all in one column)

Name Grade Date
Smith, John charles, Grade 3, 01-jan-18
Smith, John charles, Grade 2, 01-jan-17
Smith, John charles, Grade 1, 01-jan-16
jones, fred bloggs, Grade 1, 01-jan-18
smith, jack, grade 1,01-jan-16
smith, jack, grade 2,01-feb-18

etc
to row 12000+

On sheet 2

I wish to display / group that data by say name. As I could have many rows with same surname names, but different first and middle names, each with different grades and dates I wish to end up with all the data
being grouped as below.

Name Grade Date
Smith, John charles Grade 3 01-jan-18
Grade 2 01-jan-17
Grade 1 01-jan-16
jones, fred bloggs Grade 1 01-jan-18
smith, jack Grade 1 01-jan-16
Grade 2 01-feb-18
Etc.

The VBA script that was very kindly provided before is below;



Code:
Sub SplitData()

    Dim SrcSht As Worksheet
    Dim DestSht As Worksheet
    Dim UsdRws As Long
    Dim Cl As Range
    
Application.ScreenUpdating = False

    Set SrcSht = ThisWorkbook.Sheets("test1")
    Set DestSht = ThisWorkbook.Sheets("Sheet2")
    UsdRws = SrcSht.Range("B" & Rows.Count).End(xlUp).Row
    With CreateObject("scripting.dictionary")
        For Each Cl In SrcSht.Range("B2:B" & UsdRws)
            If Not .Exists(Cl.Value) Then
                .Add Cl.Value, Nothing
                SrcSht.Range("A1").AutoFilter 2, Cl.Value
                If .Count = 1 Then
                    DestSht.Range("A1") = Cl.Value
                    DestSht.Range("A1").Font.Bold = True
                    SrcSht.Range("C1:C" & UsdRws).SpecialCells(xlVisible).copy DestSht.Range("A" & Rows.Count).End(xlUp).Offset(2, 1)
                    SrcSht.Range("A1:A" & UsdRws).SpecialCells(xlVisible).copy DestSht.Range("A" & Rows.Count).End(xlUp).Offset(2)
                Else
                    DestSht.Range("A" & Rows.Count).End(xlUp).Offset(3) = Cl.Value
                    DestSht.Range("A" & Rows.Count).End(xlUp).Font.Bold = True
                    SrcSht.Range("C2:C" & UsdRws).SpecialCells(xlVisible).copy DestSht.Range("A" & Rows.Count).End(xlUp).Offset(2, 1)
                    SrcSht.Range("A2:A" & UsdRws).SpecialCells(xlVisible).copy DestSht.Range("A" & Rows.Count).End(xlUp).Offset(2)
                End If
            End If
        Next Cl
I thank you for your assistance.
 
Last edited by a moderator:

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
How about
Code:
Sub SplitData2()

   Dim SrcSht As Worksheet
   Dim DestSht As Worksheet
   Dim UsdRws As Long
   Dim Cl As Range
   
Application.ScreenUpdating = False
   Set SrcSht = ThisWorkbook.Sheets("test1")
   Set DestSht = ThisWorkbook.Sheets("Sheet2")
   UsdRws = SrcSht.Range("A" & Rows.count).End(xlUp).Row
   
   If SrcSht.AutoFilterMode Then SrcSht.AutoFilterMode = False
   With CreateObject("scripting.dictionary")
      For Each Cl In SrcSht.Range("A2:A" & UsdRws)
         If Not .Exists(Cl.Value) Then
            .Add Cl.Value, Nothing
            SrcSht.Range("A1").AutoFilter 2, Cl.Value
            DestSht.Range("B" & Rows.count).End(xlUp).Offset(1, -1).Value = Cl.Value
            SrcSht.Range("B2:C" & UsdRws).SpecialCells(xlVisible).Copy DestSht.Range("B" & Rows.count).End(xlUp).Offset(1)
         End If
      Next Cl
   End With
   SrcSht.AutoFilterMode = False
    
End Sub
When posting code, please use code tags, the # icon in the reply window.
 
Upvote 0
Thanks again for the quick response. In running the code you very kindly provided I get the following error;

runtime error 1004
application defined or object defined error.

On test1 (raw data) the data in each of the 3 columns is condensed with filter buttons.
On sheet 2 (output) only the first row of the raw data on test1 is copied BUT only the last name, middle name, first name.
the grade or date is not copied across.

Any thoughts? thanks.
 
Upvote 0
Oops, forgot to change the filter feld
Code:
            SrcSht.Range("A1").AutoFilter [COLOR=#ff0000]1[/COLOR], Cl.Value
 
Upvote 0
This worked just great. thank you so much. It is very much appreciated. :)
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0
Good morning I have been performing some more testing on the procedure - all still appears to work ok. However, I get the following message;

autofilter method of range class failed.

But the procedure appears to complete the grouping of data as expected.

Any thoughts? Thanks.
 
Upvote 0
What is the value of Cl when it fails?
 
Upvote 0
As my knowledge of VBA is minimal can you advise how I get the value of C1 when it fails? If you are referring to the autofilter it is 1. If you are referring to the dataset C1 is "date of grade". What do i need to do to give the info you require? Thanks.
 
Upvote 0
When the code fails, click debug, then hover the mouse over where it says Cl.Value. You should then get a "Tool tip" appear with the value of Cl. What does it say?
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

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