+ Reply to Thread
Results 1 to 10 of 10

Sum unique columns

  1. #1
    Registered User
    Join Date
    09-07-2015
    Location
    oslo
    MS-Off Ver
    office 365
    Posts
    4

    Sum unique columns

    Hi, i have a table:

    Name Apples
    Ken 2
    James 5
    James 5
    John 3

    Without pivot tables, I want the formula of total sum of apples of every name but not duplicates, in this case: 10.
    How can this be done?

  2. #2
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Sum unique columns

    Check out this link.

    http://www.excelforum.com/excel-prog...ml#post4131303
    If you like my answer please click on * Add Reputation
    Don't forget to mark threads as "Solved" if your problem has been resolved

    "Nothing is so firmly believed as what we least know."
    --Michel de Montaigne

  3. #3
    Registered User
    Join Date
    08-18-2015
    Location
    Ebbw Vale
    MS-Off Ver
    Windows 7
    Posts
    34

    Re: Sum unique columns

    Cant you just remove duplicates. and choose names

  4. #4
    Registered User
    Join Date
    09-07-2015
    Location
    oslo
    MS-Off Ver
    office 365
    Posts
    4

    Re: Sum unique columns

    I'd rather not remove duplicates, because it's in a table with other values, example:

    Name Apples Oranges
    Ken 2 5
    James 5 8
    James 5 1
    John 3 3

    Ok thanks, I will check out that link.

  5. #5
    Registered User
    Join Date
    09-07-2015
    Location
    oslo
    MS-Off Ver
    office 365
    Posts
    4

    Re: Sum unique columns

    Is this possible with a formula? (without VBA)

  6. #6
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: Sum unique columns

    This problem doesn't make a whole lot of sense because when you had only Names and Apples there were duplicates but as soon as you added Oranges, the duplicate that existed not longer exists (as a complete record)
    With only apples this works:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    A
    B
    C
    1
    Name Apples Apples Sum
    2
    Ken
    2
    2
    3
    James
    5
    5
    4
    James
    5
    5
    John
    3
    3


    If you want to show the sum of Oranges separately as a unique count then possibly this will work.
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    A
    B
    C
    D
    E
    1
    Name Apples Oranges Apples Sum Oranges Sum
    2
    Ken
    2
    5
    2
    5
    3
    James
    5
    8
    5
    8
    4
    James
    5
    1
    1
    5
    John
    3
    3
    3
    3
    6
    John
    3
    3
    7
    Sam
    4
    5
    4
    5
    8
    Sam
    2
    5
    2
    <---------If you like someone's answer, click the star to the left of one of their posts to give them a reputation point for that answer.
    Ron W

  7. #7
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Sum unique columns

    Use this formula to get unique names list

    Enter in E2 and copy down

    =IFERROR(INDEX($A$2:$A$5,MATCH(0,INDEX(COUNTIF(E$1:E1,$A$2:$A$5),,),)),"")

    enter formula in F2 and and pull it to the right and then down

    =SUMIFS(INDEX($B$2:$C$5,0,MATCH(F$1,$B$1:$C$1,0)),$A$2:$A$5,$E2)

    Data Range
    A
    B
    C
    D
    E
    F
    G
    1
    Names
    Apples
    Oranges
    Uniqe names
    Apples
    Oranges
    2
    Ken
    2
    5
    Ken
    2
    5
    3
    James
    5
    8
    James
    10
    9
    4
    James
    5
    1
    John
    3
    3
    5
    John
    3
    3

  8. #8
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Sum unique columns

    Try this...

    Data Range
    A
    B
    C
    D
    1
    Name
    Apples
    Total
    2
    Ken
    2
    10
    3
    James
    5
    4
    James
    5
    5
    John
    3
    6
    ------
    ------
    ------
    ------


    This array formula** entered in D2:

    =SUM(IF(FREQUENCY(MATCH(A2:A5&B2:B5,A2:A5&B2:B5,0),ROW(B2:B5)-ROW(B2)+1),B2:B5))

    ** array formulas need to be entered using the key
    combination of CTRL,SHIFT,ENTER (not just ENTER).
    Hold down both the CTRL key and the SHIFT key
    then hit ENTER.
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  9. #9
    Registered User
    Join Date
    09-07-2015
    Location
    oslo
    MS-Off Ver
    office 365
    Posts
    4

    Re: Sum unique columns

    Thanks all

  10. #10
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Sum unique columns

    You're welcome!


    If your question has been solved please mark the thread as being solved.

    In the menu bar above the very first post select Thread Tools, then select Mark this thread as solved.

+ 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. Columns and unique IDs
    By Arnhold in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-19-2014, 09:00 AM
  2. Find unique IDs across 14 columns
    By KK33317 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-09-2014, 06:40 AM
  3. How to compare two columns - one is non-unique
    By fishist in forum Excel General
    Replies: 4
    Last Post: 05-30-2013, 02:01 AM
  4. 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
  5. 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
  6. Sum unique value from different columns
    By Kineas in forum Excel General
    Replies: 23
    Last Post: 06-14-2011, 03:42 PM
  7. How to get unique value from two columns in a third colum
    By kttesting in forum Excel General
    Replies: 9
    Last Post: 12-18-2008, 08:25 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