+ Reply to Thread
Results 1 to 8 of 8

adding and divideing by a the number of cells!

  1. #1
    Registered User
    Join Date
    12-13-2005
    Posts
    8

    adding and divideing by a the number of cells!

    Hey guys im making an excell document, i want to make a function that does this :
    adds all the filled out cells(not the empty ones) and divides them by their number (again ignoring the empty ones) so that if i have a row A1-10 it counts all the cells filled out and divides them by their number im not good at english but i know there is a word for that m-something... so could you guys *Fully* explain? You see if the teacher asks me how i did itt i have to explain and understand thanx!

    zAk

  2. #2
    Peo Sjoblom
    Guest

    Re: adding and divideing by a the number of cells!

    =AVERAGE(A1:A10)

    =SUM(A1:A10)/COUNT(A1:A10)


    --

    Regards,

    Peo Sjoblom

    "nerdman" <nerdman.201fzn_1134577505.4665@excelforum-nospam.com> wrote in
    message news:nerdman.201fzn_1134577505.4665@excelforum-nospam.com...
    >
    > Hey guys im making an excell document, i want to make a function that
    > does this :
    > adds all the filled out cells(not the empty ones) and divides them by
    > their number (again ignoring the empty ones) so that if i have a row
    > A1-10 it counts all the cells filled out and divides them by their
    > number im not good at english but i know there is a word for that
    > m-something... so could you guys *Fully* explain? You see if the
    > teacher asks me how i did itt i have to explain and understand thanx!
    >
    > zAk
    >
    >
    > --
    > nerdman
    > ------------------------------------------------------------------------
    > nerdman's Profile:

    http://www.excelforum.com/member.php...o&userid=29614
    > View this thread: http://www.excelforum.com/showthread...hreadid=493444
    >




  3. #3
    Bob Phillips
    Guest

    Re: adding and divideing by a the number of cells!

    =AVERAGE(A1:A10)

    --
    HTH

    Bob Phillips

    (remove nothere from email address if mailing direct)

    "nerdman" <nerdman.201fzn_1134577505.4665@excelforum-nospam.com> wrote in
    message news:nerdman.201fzn_1134577505.4665@excelforum-nospam.com...
    >
    > Hey guys im making an excell document, i want to make a function that
    > does this :
    > adds all the filled out cells(not the empty ones) and divides them by
    > their number (again ignoring the empty ones) so that if i have a row
    > A1-10 it counts all the cells filled out and divides them by their
    > number im not good at english but i know there is a word for that
    > m-something... so could you guys *Fully* explain? You see if the
    > teacher asks me how i did itt i have to explain and understand thanx!
    >
    > zAk
    >
    >
    > --
    > nerdman
    > ------------------------------------------------------------------------
    > nerdman's Profile:

    http://www.excelforum.com/member.php...o&userid=29614
    > View this thread: http://www.excelforum.com/showthread...hreadid=493444
    >




  4. #4
    Valued Forum Contributor
    Join Date
    03-25-2004
    Location
    Boston, MA US
    Posts
    1,094
    Zak,

    Sounds like you just need a simple average of cells containing values.

    Use,

    =AVERAGE(A1:A10)

    The function will ignore blank cells. AVERAGE adds up the values in the list and then divides that sum by the number of non-blank cells.



    Cheers,

    Steve

  5. #5
    Ron Coderre
    Guest

    RE: adding and divideing by a the number of cells!

    I think the AVERAGE function will satisfy your request:

    B1: =AVERAGE(A1:A10)

    Does that help?

    ***********
    Regards,
    Ron


    "nerdman" wrote:

    >
    > Hey guys im making an excell document, i want to make a function that
    > does this :
    > adds all the filled out cells(not the empty ones) and divides them by
    > their number (again ignoring the empty ones) so that if i have a row
    > A1-10 it counts all the cells filled out and divides them by their
    > number im not good at english but i know there is a word for that
    > m-something... so could you guys *Fully* explain? You see if the
    > teacher asks me how i did itt i have to explain and understand thanx!
    >
    > zAk
    >
    >
    > --
    > nerdman
    > ------------------------------------------------------------------------
    > nerdman's Profile: http://www.excelforum.com/member.php...o&userid=29614
    > View this thread: http://www.excelforum.com/showthread...hreadid=493444
    >
    >


  6. #6
    tjtjjtjt
    Guest

    RE: adding and divideing by a the number of cells!

    How about =AVERAGE(A1:A10)?
    --
    tj


    "nerdman" wrote:

    >
    > Hey guys im making an excell document, i want to make a function that
    > does this :
    > adds all the filled out cells(not the empty ones) and divides them by
    > their number (again ignoring the empty ones) so that if i have a row
    > A1-10 it counts all the cells filled out and divides them by their
    > number im not good at english but i know there is a word for that
    > m-something... so could you guys *Fully* explain? You see if the
    > teacher asks me how i did itt i have to explain and understand thanx!
    >
    > zAk
    >
    >
    > --
    > nerdman
    > ------------------------------------------------------------------------
    > nerdman's Profile: http://www.excelforum.com/member.php...o&userid=29614
    > View this thread: http://www.excelforum.com/showthread...hreadid=493444
    >
    >


  7. #7
    Duke Carey
    Guest

    RE: adding and divideing by a the number of cells!

    Since you are supposed to be learning something, go read about the SUM() and
    COUNTIF() functions. With that headstart and a little thinking on your part,
    you should get a top grade!

    "nerdman" wrote:

    >
    > Hey guys im making an excell document, i want to make a function that
    > does this :
    > adds all the filled out cells(not the empty ones) and divides them by
    > their number (again ignoring the empty ones) so that if i have a row
    > A1-10 it counts all the cells filled out and divides them by their
    > number im not good at english but i know there is a word for that
    > m-something... so could you guys *Fully* explain? You see if the
    > teacher asks me how i did itt i have to explain and understand thanx!
    >
    > zAk
    >
    >
    > --
    > nerdman
    > ------------------------------------------------------------------------
    > nerdman's Profile: http://www.excelforum.com/member.php...o&userid=29614
    > View this thread: http://www.excelforum.com/showthread...hreadid=493444
    >
    >


  8. #8
    Louise
    Guest

    RE: adding and divideing by a the number of cells!

    Hi
    If I understand correctly, you are trying to calculate the 'average' of a
    selection of figures? This will add all the figures together and then divide
    the answer by the number of figures you have.

    If this is what you want:-

    1. Go to the cell you want the answer in.
    2. Click onto the drop down arrow beside AutoSum and choose Average.
    3. Highlight the cells you wish to calculate.
    4. Press Enter.

    It will give you a calculation of =Average(A1:A10)

    HTH

    Louise

    "nerdman" wrote:

    >
    > Hey guys im making an excell document, i want to make a function that
    > does this :
    > adds all the filled out cells(not the empty ones) and divides them by
    > their number (again ignoring the empty ones) so that if i have a row
    > A1-10 it counts all the cells filled out and divides them by their
    > number im not good at english but i know there is a word for that
    > m-something... so could you guys *Fully* explain? You see if the
    > teacher asks me how i did itt i have to explain and understand thanx!
    >
    > zAk
    >
    >
    > --
    > nerdman
    > ------------------------------------------------------------------------
    > nerdman's Profile: http://www.excelforum.com/member.php...o&userid=29614
    > View this thread: http://www.excelforum.com/showthread...hreadid=493444
    >
    >


+ 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