+ Reply to Thread
Results 1 to 4 of 4

Columns and unique IDs

Hybrid View

  1. #1
    Registered User
    Join Date
    12-18-2014
    Location
    Washington, DC
    MS-Off Ver
    Office 2010
    Posts
    2

    Columns and unique IDs

    Hey y'all,

    I have data in 12 columns, each 10 rows. One column contains an identification code, other an associated count for a demographic. The some codes are repeated in multiple columns, but some columns have a code that only appears with a particular demographic. Example: (the formatting stinks, but the X count is always a positive integer, the code is alphanumeric):

    Code X Count Code
    10 10 31
    11 12 11
    EN 15 J6
    31 1 10
    J6 ZZ
    45 92...
    X1
    KR
    88
    22


    All the data is made up at this point. However what I want is to have a macro loop through the codes and print out the unique codes in a column, then loop through again and sum the data associated with each code (so if code 10 appears in six column, it should be the sum of those 6 numbers). Problem is, I'm not great at macros/VBA, so I'm asking for help.

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

    Re: Columns and unique IDs

    Why not send a file with a before and after, its so much easier to understand !!!!

  3. #3
    Registered User
    Join Date
    12-18-2014
    Location
    Washington, DC
    MS-Off Ver
    Office 2010
    Posts
    2

    Re: Columns and unique IDs

    Sorry, first timer!

    AttachedExample.xlsx

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

    Re: Columns and unique IDs

    Try this:-
    Results start "Y1" (for top 10)
    Sub MG19Dec34
    Dim Rng As Range, Dn As Range, n As Long
    Dim Ac As Long, Lg As Long, K As Variant
    Set Rng = Range("B3").Resize(10)
    With CreateObject("scripting.dictionary")
    .CompareMode = vbTextCompare
    For Each Dn In Rng
    For Ac = 0 To 21 Step 3
        If Not .Exists(Dn.Offset(, Ac).Value) Then
            .Add Dn.Offset(, Ac).Value, Dn.Offset(, Ac + 1).Value
        Else
            .Item(Dn.Offset(, Ac).Value) = .Item(Dn.Offset(, Ac).Value) + Dn.Offset(, Ac + 1).Value
        End If
    Next Ac
    Next
    ReDim ray(1 To 10, 1 To 2)
    For n = 1 To 10
        Lg = Application.Large(.items, n)
        For Each K In .keys
            If .Item(K) = Lg Then ray(n, 1) = K: ray(n, 2) = Lg
        Next K
    Next n
    
    Range("Y1").Resize(10, 2) = ray
    End With
    
    End Sub
    Regards 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. [SOLVED] Sum multiple columns by unique ID
    By FaithH in forum Excel Formulas & Functions
    Replies: 13
    Last Post: 04-16-2014, 12:54 PM
  2. Unique Values From All Columns
    By nandkishorskale in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 09-10-2013, 12:06 PM
  3. Duplicate rows, delete columns w/same data, combine columns w/unique data, Mac Excel 2011
    By msmcoin in forum For Other Platforms(Mac, Google Docs, Mobile OS etc)
    Replies: 2
    Last Post: 02-03-2013, 02:10 PM
  4. 3 columns: None contain unique values, but I need a list of every unique set
    By mathematician in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 06-15-2012, 04:47 PM
  5. Sum unique value from different columns
    By Kineas in forum Excel General
    Replies: 23
    Last Post: 06-14-2011, 03:42 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