+ Reply to Thread
Results 1 to 3 of 3

How can I average data from a repeating list into a unique list?

  1. #1
    Hicoda
    Guest

    How can I average data from a repeating list into a unique list?

    I have a list of twenty five names. This list contains data from 1 month.
    Each name has multipule occurances. I need to create a list of unique names
    with the average of each individules data.

  2. #2
    Duke Carey
    Guest

    RE: How can I average data from a repeating list into a unique list?

    Use a pivot table. Select any cell in your table, then go to Data->Pivot
    table and click on Finish. In the diagrm that comes up, drag the Names to
    the row area and the data to the data area. Right click on the data field
    name and choose average

    "Hicoda" wrote:

    > I have a list of twenty five names. This list contains data from 1 month.
    > Each name has multipule occurances. I need to create a list of unique names
    > with the average of each individules data.


  3. #3
    Bob Phillips
    Guest

    Re: How can I average data from a repeating list into a unique list?

    In E1: =A1
    E2: =IF(ISERROR(MATCH(0,COUNTIF(E$1:E1,$A$1:$A$20&""),0)),"",
    INDEX(IF(ISBLANK($A$1:$A$20),"",$A$1:$A$20),MATCH(0,COUNTIF(E$1:E1,$A$1:$A$2
    0&""),0)))

    which is an array formula, it should be committed with Ctrl-Shift-Enter, not
    just Enter.

    Copy E2 down as far as you might need, max E25

    F1: =IF(E1="","",AVERAGE(IF(A1:A25=E1,B1:B25)))

    also an array formula. Copy this down to the same row as in E.

    --
    HTH

    Bob Phillips

    (remove nothere from email address if mailing direct)

    "Hicoda" <[email protected]> wrote in message
    news:[email protected]...
    > I have a list of twenty five names. This list contains data from 1 month.
    > Each name has multipule occurances. I need to create a list of unique

    names
    > with the average of each individules data.




+ 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