+ Reply to Thread
Results 1 to 10 of 10

Average of Certain Range of Scores between 70-100

Hybrid View

  1. #1
    Registered User
    Join Date
    09-26-2012
    Location
    Houston
    MS-Off Ver
    Excel 2007
    Posts
    12

    Average of Certain Range of Scores between 70-100

    I have a question? I am tracking student progress. I want to find the average of students that scored 70 or above. I get all of their scores in excel, but I do not know how to do this fast?


    Student A: 80
    Student B: 90
    Student C: 50
    Student D:30
    Student E:40
    Student F:20
    Student G:10
    Student H: 100
    Student I: 70

    I know I can sort the students "smallest to highest" and then manually select the students that scored 70 or above to get the average, but that is too time consuming. Please help!


    Sincerely,

    Damon Jasso
    Ortiz Middle School

  2. #2
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Average of Certain Range of Scores between 70-100

    If your scores are in column B

    =AVERAGEIF(B1:B9,">=70")

    - Moo

  3. #3
    Registered User
    Join Date
    09-26-2012
    Location
    Houston
    MS-Off Ver
    Excel 2007
    Posts
    12

    Unhappy Re: Average of Certain Range of Scores between 70-100

    Quote Originally Posted by Moo the Dog View Post
    If your scores are in column B

    =AVERAGEIF(B1:B9,">=70")

    - Moo
    I MADE A MISTAKE! I mean I need an average of the students that scored 70% or above out of all of the students.

    For example: If I had 10 kids, and 4 made a 70% or above, then the pass rate is: 40%

    I apologize!

    DAMON JASSO
    Ortizmiddleschool.org

  4. #4
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Average of Certain Range of Scores between 70-100

    Another approach, with an pivot table.
    Attached Files Attached Files
    Notice my main language is not English.

    I appreciate it, if you reply on my solution.

    If you are satisfied with the solution, please mark the question solved.

    You can add reputation by clicking on the star * add reputation.

  5. #5
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Average of Certain Range of Scores between 70-100

    OK, if your scores are in column B, try this:
    Formula: copy to clipboard
    =COUNTIF(B1:B9,">=70")/COUNT(B1:B9)
    -Moo

  6. #6
    Registered User
    Join Date
    09-26-2012
    Location
    Houston
    MS-Off Ver
    Excel 2007
    Posts
    12

    Re: Average of Certain Range of Scores between 70-100

    This is awesome! One last question, what if I apply another data set next the the student name and I want to filter it to get a more detailed average?

    For Example

    1 AA Student A 90
    2 AA Student B 60
    3 LEP Student C 40
    4 AA Student D 70
    5 AA Student E 80
    6 LEP Student F 40

    I would put the filter on for "AA" and then I would want the percentage of students that scored 70% out of the number of students that took the test? Thank you! If I have too, I suppose could paste values but that is time consuming...

    Sincerely,

    Damon Jasso
    www.ortizmiddleschool.org

  7. #7
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Average of Certain Range of Scores between 70-100

    OK, so if you had AA in column A, the student in column B, and the scores in column C, try this:
    Formula: copy to clipboard
    =COUNTIFS(A1:A9,"AA",C1:C9,">=70")/COUNTIF(A1:A9,"AA")
    - Moo


    The sample of data I used was this:
    AA Student 80
    AA Student 90
    LEP Student 50
    AA Student 30
    AA Student 40
    LEP Student 20
    AA Student 10
    AA Student 100
    LEP Student 70
    Last edited by Moo the Dog; 11-16-2012 at 01:24 PM. Reason: Added sample data that was used

  8. #8
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Average of Certain Range of Scores between 70-100

    To change the lookup from AA to LEP would require you to change the formula (replacing "AA" with "LEP" twice. The better way would be to store the lookup value (AA, LEP, etc.) in a cell.

    For instance, You could put the lookup value in cell D1 (AA), and the score that constitutes a passing grade in D2 (70), then the formula would be:
    Formula: copy to clipboard
    =COUNTIFS(A1:A9,$D$1,C1:C9,">="&$D$2)/COUNTIF(A1:A9,$D$1)
    Just some food for thought.

    Of course, the other route to go is a Pivot Table, suggested above by oeldere.

    - Moo

  9. #9
    Registered User
    Join Date
    09-26-2012
    Location
    Houston
    MS-Off Ver
    Excel 2007
    Posts
    12

    Re: Average of Certain Range of Scores between 70-100

    Your my hero... Is there a donate button on here somewhere?

    DAMON

  10. #10
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Average of Certain Range of Scores between 70-100

    You're very welcome. Glad to help.

    There isn't a donate button - we do this for (fun?) free, but you can click on the little star below any contributor's name (to the left, at the bottom of their post) who has helped find a solution for your issue.

    - Moo

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

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