+ Reply to Thread
Results 1 to 6 of 6

Averages on Excel2000

  1. #1
    Forum Contributor
    Join Date
    03-23-2007
    Location
    Essex, UK
    MS-Off Ver
    MS365 V2308
    Posts
    279

    Talking Averages on Excel2000

    Need a formula.

    I have a total in F16 that i need to find an average of.

    The range is set from f4 - f15 (12 months) and need to find the running average per month. but as we only have done 5 months of the year so far that is the only average required (F16/5).

    I need this to count at the end of june (F16/6) basically not counting any zero months (jul, aug, sept etc until the end of each)
    Last edited by ukphoenix; 06-02-2009 at 02:55 PM.

  2. #2
    Forum Contributor
    Join Date
    02-27-2008
    Posts
    764

    Re: Averages on Excel2000

    Hi
    try
    F16/(month(today())-1)
    ravi

  3. #3
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Averages on Excel2000

    maybe:

    =Sum(F4:F15)/Month(Today())

    This will sum all values and divide by the number of months up to including the current month... ie. June for today.
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  4. #4
    Forum Contributor
    Join Date
    03-23-2007
    Location
    Essex, UK
    MS-Off Ver
    MS365 V2308
    Posts
    279

    Re: Averages on Excel2000

    =Sum(F4:F15)/Month(Today()) works but is dividing it by 6 months. June is currently 0 (zero). the division needs to happen on the last day of the month so the current answer required is the total divided by 5 months

    Sorry if im explaining this too well

  5. #5
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Averages on Excel2000

    How about?

    =SUM(F4:F15)/(MONTH(TODAY())-IF(TODAY()=EOMONTH(TODAY(),0),0,1))

    Note: EOMONTH() is an analysis toolpak addin function... Tools|Addins >> check Analysis Toolpak

  6. #6
    Forum Contributor
    Join Date
    03-23-2007
    Location
    Essex, UK
    MS-Off Ver
    MS365 V2308
    Posts
    279

    Re: Averages on Excel2000

    Both formulas worked. thanx again for your help guys

+ 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