+ Reply to Thread
Results 1 to 3 of 3

Sum of cells whit the same name

  1. #1
    Registered User
    Join Date
    01-23-2006
    Posts
    2

    Sum of cells whit the same name

    I have a table like this (original cotains a row a 4000 cells)



    CAR NUMBER TOTAL
    Mazda 1
    Mazda 7
    Mazda 8
    Volvo 4
    Volvo 5
    Skoda 5
    Skoda 4
    Skoda 7


    How do i get a sum of cells with the same name, so you get something like this.

    CAR NUMBER TOTAL
    Mazda 1 16
    Mazda 7
    Mazda 8
    Volvo 4 9
    Volvo 5
    Skoda 5 16
    Skoda 4
    Skoda 7

  2. #2
    Ron Rosenfeld
    Guest

    Re: Sum of cells whit the same name

    On Mon, 23 Jan 2006 09:39:11 -0600, Mark J
    <[email protected]> wrote:

    >
    >I have a table like this (original cotains a row a 4000 cells)
    >
    >
    >
    >CAR NUMBER TOTAL
    >Mazda 1
    >Mazda 7
    >Mazda 8
    >Volvo 4
    >Volvo 5
    >Skoda 5
    >Skoda 4
    >Skoda 7
    >
    >
    >How do i get a sum of cells with the same name, so you get something
    >like this.
    >
    >CAR NUMBER TOTAL
    >Mazda 1 16
    >Mazda 7
    >Mazda 8
    >Volvo 4 9
    >Volvo 5
    >Skoda 5 16
    >Skoda 4
    >Skoda 7


    To replicate your results, and this assumes that CAR is sorted as you show, and
    the table is in A1:Cn. CAR and NUMBER are NAME'd ranges.

    C2: =IF(A2<>A1,SUMIF(CAR,A2,NUMBER),"")

    Copy/Drag down as far as needed.

    You should also look at the

    Data/Subtotals and Data/Pivot Table wizards for alternate methods of doing
    this.

    In particular, the Pivot Table will be of value if CAR is not a sorted list.


    --ron

  3. #3
    RagDyeR
    Guest

    Re: Sum of cells whit the same name

    Names in Column A,
    Numbers in Column B,
    Enter this in C1, and copy down as needed:

    =IF(A1<>A2,SUMIF($A$1:A1,A1,$B$1:B1),"")

    This places total at *end* of group !

    --

    HTH,

    RD
    =====================================================
    Please keep all correspondence within the Group, so all may benefit!
    =====================================================

    "Mark J" <[email protected]> wrote in
    message news:[email protected]...

    I have a table like this (original cotains a row a 4000 cells)



    CAR NUMBER TOTAL
    Mazda 1
    Mazda 7
    Mazda 8
    Volvo 4
    Volvo 5
    Skoda 5
    Skoda 4
    Skoda 7


    How do i get a sum of cells with the same name, so you get something
    like this.

    CAR NUMBER TOTAL
    Mazda 1 16
    Mazda 7
    Mazda 8
    Volvo 4 9
    Volvo 5
    Skoda 5 16
    Skoda 4
    Skoda 7


    --
    Mark J
    ------------------------------------------------------------------------
    Mark J's Profile:
    http://www.excelforum.com/member.php...o&userid=30738
    View this thread: http://www.excelforum.com/showthread...hreadid=504042



+ Reply to 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