+ Reply to Thread
Results 1 to 5 of 5

Absolute average

  1. #1
    Marc Fleury
    Guest

    Absolute average

    I'm putting together a sheet that ranks a bunch of gamers based on their
    stats. The ranking will be done once per week. After each ranking, I'm
    listing how much the rank changed since the previous ranking. So, I have a
    column of numbers which include both positive and negatives. The Sum and
    the Average of this column is always going to be zero, but I want to show
    the average change in absolute terms. I.e. the average player moved 2.5
    ranks this week (whether up or down the ranks).

    I'm thinking AVERAGE(ABS(A:A)) but it doesn't calculate correctly. For this
    sample data:

    1
    -1
    2
    -2
    3
    -3
    4
    -4

    That formula calculates "4" but it should be "2.5"


    --
    Marc.

  2. #2
    N Harkawat
    Guest

    Re: Absolute average

    Use
    =average(abs(a1:a1000))
    array entered (by press ctrl+shift+enter instead of just enter)

    Or
    =AVERAGE(IF(ISNUMBER(A1:A1000),ABS(A1:A1000)))
    to eliminate any values that are not numbers in the range (again array
    entered)


    "Marc Fleury" <marcfleury@sympatico.ca> wrote in message
    news:Xns962A59F6D731Amarcfleurysympaticoc@207.35.177.135...
    > I'm putting together a sheet that ranks a bunch of gamers based on their
    > stats. The ranking will be done once per week. After each ranking, I'm
    > listing how much the rank changed since the previous ranking. So, I have a
    > column of numbers which include both positive and negatives. The Sum and
    > the Average of this column is always going to be zero, but I want to show
    > the average change in absolute terms. I.e. the average player moved 2.5
    > ranks this week (whether up or down the ranks).
    >
    > I'm thinking AVERAGE(ABS(A:A)) but it doesn't calculate correctly. For
    > this
    > sample data:
    >
    > 1
    > -1
    > 2
    > -2
    > 3
    > -3
    > 4
    > -4
    >
    > That formula calculates "4" but it should be "2.5"
    >
    >
    > --
    > Marc.




  3. #3
    Domenic
    Guest

    Re: Absolute average

    Try...

    =AVERAGE(IF(A1:A8>0,A1:A8))

    .....confirmed with CONTROL+SHIFT+ENTER, not just ENTER.

    Hope this helps!

    In article <Xns962A59F6D731Amarcfleurysympaticoc@207.35.177.135>,
    Marc Fleury <marcfleury@sympatico.ca> wrote:

    > I'm putting together a sheet that ranks a bunch of gamers based on their
    > stats. The ranking will be done once per week. After each ranking, I'm
    > listing how much the rank changed since the previous ranking. So, I have a
    > column of numbers which include both positive and negatives. The Sum and
    > the Average of this column is always going to be zero, but I want to show
    > the average change in absolute terms. I.e. the average player moved 2.5
    > ranks this week (whether up or down the ranks).
    >
    > I'm thinking AVERAGE(ABS(A:A)) but it doesn't calculate correctly. For this
    > sample data:
    >
    > 1
    > -1
    > 2
    > -2
    > 3
    > -3
    > 4
    > -4
    >
    > That formula calculates "4" but it should be "2.5"
    >
    >
    > --
    > Marc.


  4. #4
    Myrna Larson
    Guest

    Re: Absolute average

    That is averaging only those people who moved up. He wants to include up or
    down, or (presumably) unchanged. i.e. if nobody's rank changed, they values
    are all 0, and your formula will give a #DIV/0 error.


    On Thu, 31 Mar 2005 09:18:37 -0500, Domenic <domenic22@sympatico.ca> wrote:

    >Try...
    >
    >=AVERAGE(IF(A1:A8>0,A1:A8))
    >
    >....confirmed with CONTROL+SHIFT+ENTER, not just ENTER.
    >
    >Hope this helps!
    >
    >In article <Xns962A59F6D731Amarcfleurysympaticoc@207.35.177.135>,
    > Marc Fleury <marcfleury@sympatico.ca> wrote:
    >
    >> I'm putting together a sheet that ranks a bunch of gamers based on their
    >> stats. The ranking will be done once per week. After each ranking, I'm
    >> listing how much the rank changed since the previous ranking. So, I have a
    >> column of numbers which include both positive and negatives. The Sum and
    >> the Average of this column is always going to be zero, but I want to show
    >> the average change in absolute terms. I.e. the average player moved 2.5
    >> ranks this week (whether up or down the ranks).
    >>
    >> I'm thinking AVERAGE(ABS(A:A)) but it doesn't calculate correctly. For this
    >> sample data:
    >>
    >> 1
    >> -1
    >> 2
    >> -2
    >> 3
    >> -3
    >> 4
    >> -4
    >>
    >> That formula calculates "4" but it should be "2.5"
    >>
    >>
    >> --
    >> Marc.



  5. #5
    Domenic
    Guest

    Re: Absolute average

    Myrna,

    Thanks for pointing that out. I always appreciate any feedback,
    especially when I royally mess up as I did now.

    Thanks again.

    In article <0dgo419gqli456tsog3oinbjdkfimjgset@4ax.com>,
    Myrna Larson <anonymous@discussions.microsoft.com> wrote:

    > That is averaging only those people who moved up. He wants to include up or
    > down, or (presumably) unchanged. i.e. if nobody's rank changed, they values
    > are all 0, and your formula will give a #DIV/0 error.
    >
    >
    > On Thu, 31 Mar 2005 09:18:37 -0500, Domenic <domenic22@sympatico.ca> wrote:
    >
    > >Try...
    > >
    > >=AVERAGE(IF(A1:A8>0,A1:A8))
    > >
    > >....confirmed with CONTROL+SHIFT+ENTER, not just ENTER.
    > >
    > >Hope this helps!
    > >
    > >In article <Xns962A59F6D731Amarcfleurysympaticoc@207.35.177.135>,
    > > Marc Fleury <marcfleury@sympatico.ca> wrote:
    > >
    > >> I'm putting together a sheet that ranks a bunch of gamers based on their
    > >> stats. The ranking will be done once per week. After each ranking, I'm
    > >> listing how much the rank changed since the previous ranking. So, I have a
    > >> column of numbers which include both positive and negatives. The Sum and
    > >> the Average of this column is always going to be zero, but I want to show
    > >> the average change in absolute terms. I.e. the average player moved 2.5
    > >> ranks this week (whether up or down the ranks).
    > >>
    > >> I'm thinking AVERAGE(ABS(A:A)) but it doesn't calculate correctly. For this
    > >> sample data:
    > >>
    > >> 1
    > >> -1
    > >> 2
    > >> -2
    > >> 3
    > >> -3
    > >> 4
    > >> -4
    > >>
    > >> That formula calculates "4" but it should be "2.5"
    > >>
    > >>
    > >> --
    > >> Marc.


+ 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