+ Reply to Thread
Results 1 to 12 of 12

De-duplicating, Merging and Totalling Exercise

Hybrid View

  1. #1
    Registered User
    Join Date
    10-15-2009
    Location
    Bristol
    MS-Off Ver
    2010
    Posts
    11

    Smile De-duplicating, Merging and Totalling Exercise

    Hi all,

    I'm trying to de-duplicate a list of donors that have the same first name (column R below), surname (column S) AND postcode (column AA), whilst also merging data in the duplicates' other fields (unique email address and telephone number) and totalling their donation amount in column N. An example of the list is shown below:

    Clipboard03.jpg

    Note that non-relevant columns are hidden.

    Specifically, I want to keep just the ID of the record that has had the data merged into it (with ID1 taking priority over ID2, ID2 over ID3, etc.). The RowID is for my reference so I can later view which rows have been removed as a result of the de-dupe.

    Any help would be greatly appreciated.

    Thanks

  2. #2
    Forum Expert Pepe Le Mokko's Avatar
    Join Date
    05-14-2009
    Location
    Belgium
    MS-Off Ver
    O365 v 2402
    Posts
    13,610

    Re: De-duplicating, Merging and Totalling Exercise

    Attach a sample workbook. Make sure there is just enough data to make it clear what is needed. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are demonstrated, mock them up manually if needed. Remember to desensitize the data.

    Click on GO ADVANCED and use the paperclip icon to open the upload window.

    View Pic

  3. #3
    Registered User
    Join Date
    10-15-2009
    Location
    Bristol
    MS-Off Ver
    2010
    Posts
    11

    Re: De-duplicating, Merging and Totalling Exercise

    Thanks for the advice. A sample workbook can be found below with BEFORE and AFTER sheets. As before, the data has been desensitized.



    Cheers
    Attached Files Attached Files

  4. #4
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: De-duplicating, Merging and Totalling Exercise

    Try this:-
    Data on sheets "BEFORE".
    Results sheet "After" starting "A1"

    Sub MG28Feb02
    Dim Rng             As Range
    Dim Dn              As Range
    Dim oTxt            As String
    Dim cols            As Variant
    With Sheets("BEFORE")
        Set Rng = .Range(.Range("R1"), .Range("R" & Rows.Count).End(xlUp))
    End With
        With CreateObject("scripting.dictionary")
            .CompareMode = vbTextCompare
    For Each Dn In Rng
    oTxt = Join(Application.Index(Dn.Resize(, 10).Value, 1, Array(1, 2, 3, 7, 10)))
        If Not .Exists(oTxt) Then
            .Add oTxt, Dn
        Else
            Set .Item(oTxt) = Union(.Item(oTxt), Dn)
        End If
    Next
    
    Dim k       As Variant
    Dim R       As Range
    Dim c       As Long
    ReDim ray(1 To .Count, 1 To 27)
    cols = Array(-17, -16, -15, -14, -13, -10, -5, 0, 1, 2, 7, 9)
    
    For Each k In .keys
        c = c + 1
        For Each R In .Item(k)
            For n = 0 To UBound(cols)
            If Not IsEmpty(R.Offset(, cols(n))) Then
                If IsEmpty(ray(c, cols(n) + 18)) Then
                ray(c, cols(n) + 18) = R.Offset(, cols(n))
                End If
            End If
        Next n
       Next R
    Next k
    
    End With
    Sheets("AFTER").Range("A1").Resize(c, 27).Value = ray
    MsgBox "Run"
    End Sub
    Regards Mick
    Last edited by MickG; 02-28-2014 at 12:24 PM.

  5. #5
    Registered User
    Join Date
    10-15-2009
    Location
    Bristol
    MS-Off Ver
    2010
    Posts
    11

    Re: De-duplicating, Merging and Totalling Exercise

    Thanks Mick,

    Works perfectly.

    I did, however, forget to include the donations data in column N, which I need to total for all the duplicates as in the updated example worksheet attached. Would it be possible to possible to add this function to the code?

    Thanks
    Attached Files Attached Files

  6. #6
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: De-duplicating, Merging and Totalling Exercise

    Try this:-
    Sub MG28Feb00
    Dim Rng             As Range
    Dim Dn              As Range
    Dim oTxt            As String
    Dim cols            As Variant
    Dim n               As Integer
    With Sheets("BEFORE")
        Set Rng = .Range(.Range("R1"), .Range("R" & Rows.Count).End(xlUp))
    End With
        With CreateObject("scripting.dictionary")
            .CompareMode = vbTextCompare
    For Each Dn In Rng
    oTxt = Join(Application.Index(Dn.Resize(, 10).Value, 1, Array(1, 2, 3, 7, 10)))
        If Not .Exists(oTxt) Then
            .Add oTxt, Dn
        Else
            Set .Item(oTxt) = Union(.Item(oTxt), Dn)
        End If
    Next
    
    Dim k       As Variant
    Dim R       As Range
    Dim c       As Long
    ReDim ray(1 To .Count, 1 To 27)
    cols = Array(-17, -16, -15, -14, -13, -10, -5, -4, 0, 1, 2, 7, 9)
    
    For Each k In .keys
        c = c + 1
        For Each R In .Item(k)
            For n = 0 To UBound(cols)
            If Not IsEmpty(R.Offset(, cols(n))) Then
                If cols(n) = "-4" Then
                    ray(c, cols(n) + 18) = ray(c, cols(n) + 18) + R.Offset(, cols(n))
                Else
                    If IsEmpty(ray(c, cols(n) + 18)) Then
                        ray(c, cols(n) + 18) = R.Offset(, cols(n))
                    End If
                End If
            End If
        Next n
       Next R
    Next k
    
    End With
    Sheets("AFTER").Range("A1").Resize(c, 27).Value = ray
    MsgBox "Run"
    End Sub
    Regards Mick

  7. #7
    Registered User
    Join Date
    10-15-2009
    Location
    Bristol
    MS-Off Ver
    2010
    Posts
    11

    Re: De-duplicating, Merging and Totalling Exercise

    Excellent, thanks so much, Mick

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Excel 2007 : Help with exercise !
    By juno28 in forum Excel General
    Replies: 3
    Last Post: 04-20-2012, 06:51 AM
  2. Columbia student exercise, Monthly > Quarterly data by Macro exercise
    By alepenn in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-18-2011, 12:04 AM
  3. Need help with a exercise
    By han83 in forum Excel General
    Replies: 1
    Last Post: 04-02-2008, 08:03 AM
  4. [SOLVED] A 13 period exercise
    By Steved in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 10:05 AM
  5. [SOLVED] A 13 period exercise
    By Steved in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 02:05 AM

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