Project #10 : A Class Gradebook

The instructions to construct the spreadsheet

  1. Create a new spreadsheet file called GRADEBOOK.
  2. Type in the title, (10) names, and Column titles, and names that you make up. It may look like the following:            

             A          B        C       D        E       F      G     H        I
    1                      Gradebook for 3rd Grade Science
    2  Students:      Test 1  Test 2  Test 3  Test 4  Test 5  Test 6 Wt Ave Ave.
    3  Hooper, Betty
    4  Bakker, Carol
    5  Helpful, Harold
    6  Heart, Larry
    7  Mighty, Mike
    8  Mouse, Minny
    9  Adams, Sally
    10 Que, Susie
    11 Terrific, Tom

    Save your work to the disk.!

  3. Next, use the spreadsheet to sort or arrange these names in alphabetical order:
  4.         A          B        C       D        E       F      G     H       I
    1                      Gradebook for 3rd Grade Science
    2    Students:   Test 1  Test 2  Test 3  Test 4  Test 5  Test 6  Wt Ave  Ave
    3  Adams, Sally
    4  Bakker, Carol
    5  Heart, Larry
    6  Helpful, Harold
    7  Hooper, Betty
    8  etc.

  5. Enter scores for the first test.
  6.         A          B        C       D       E       F      G     H       I
    1                      Gradebook for 3rd Grade Science
    2    Students:  Test 1  Test 2  Test 3  Test 4  Test 5  Test 6  Wt Ave  Ave
    3  Adams, Sally     76
    4  Bakker, Carol    67
    5  Heart, Larry     78
    6  Helpful, Harold  89
    7  Hooper, Betty    87
    8        etc.

  7. Enter possible scores for tests up to test 6.
  8. Put the average functions into the spreadsheet.

    1. Go to the Ave cell [I3] for Adams, Sally row. Ave, and type in the formula: @AVG(B3..G3)
        (It is best to type @AVG(cursor to B3 anchor with a . cursor to G3 and press ) or one may cover the cells for inclusion inside the parenthesis.
        The beauty of this formula is that a cell without an entry or number is not counted be used in the average. This is good for an excused absence. If a person was unexcused for a test and received a 0 then out a zero in that test cell and it will be averaged into the grade.

    2. Check to see that the test ave. is correct( i.e. no mistake in the formula).
      • Do this by putting in easy grades and averaging them by hand and check the computer's answer.

    3. Copy the formula for Sally's test average down to all the student test averages. The cells in the I column cells.
    4. Remember you can copy a range of cells into new locations or copy one cell into many locations with one copy command. Click on Edit Copy then mark the source cell and the destination cells. Check that there are no glaring errors.

  9. Enter the a Weighted value for the Midterm (test 3) and the Final (Test 6)
  10. Now Print Out a copy of the gradebook
  11. Next,sort the students in the spreadsheet by highest weighted Test average from highest to lowest.
  12. Add a row at the bottom of the spreadsheet for the averages of each test.
  13. Add another row at the bottom of the spreadsheet for the Standard Deviation of each test.
  14.          A          B        C       D        E       F      G       H       I
    1                      Gradebook for 3rd Grade Science
    2  Students:      Test 1  Test 2  Test 3  Test 4  Test 5  Test 6   Wt Ave   Ave
    3  Adams, Sally     76
    4  Bakker, Carol    67
    5  Heart, Larry     78
    6  Helpful, Harold  89
    7  Hooper, Betty    87
    8      etc.
    9  Test Average   78.7
    10 Standard Dev    6.48

  15. Do a three dimensional graph of Sally's test scores and the average scores of the tests
  16. Make the Gradebook Readable
  17.          A          B        C       D        E       F      G      H      I
    1                   Gradebook for 3rd Grade Science
    2    Students:     Test 1  Test 2  Test 3  Test 4  Test 5  Test 6  Wt Ave Ave
    4  -----------------------------------------------------------------------------
    5  Adams, Sally      76
    6  -----------------------------------------------------------------------------
    7  Bakker, Carol     67
    8  -----------------------------------------------------------------------------
    9  Heart, Larry      78
    10 -----------------------------------------------------------------------------
    11 Helpful, Harold   89
    12 ----------------------------------------------------------------------------
    13 Hooper, Betty     87
    14 -----------------------------------------------------------------------------

    etc.

    18  Class Average  78.7
    19  Standard Dev   6.48

  18. Build a lookup table to assign a letter grade for each student.
    1. The table below is an example of a vertical look-up table.
      The first column is the average percentage and the second column is the letter grade associates with that percent. (See Table Below).

    2. A student's average percentage that is equal to or grater than the value in the first column will be assigned the letter in the second column.
    3. The look-up table should be placed in cells that are below the grade book information.
      You might choose A35..B45.
    4. The percentages and the letter grades from the table below should be typed into the cells in the range A35..B45.
    5. 0F
      65D
      67.5D+
      70C-
      72.5C
      77.5C+
      80B-
      84B
      89B+
      92A-
      96A

    6. Add an additional column to your gradebook labeled Letter Grade.
    7. For each student's row place the formula that calls the look-up table.
    8. For Example:

        For the student whose data is in row 5 of the grade book and the % grades is in I5.
        The function in J5 would be @VLOOKUP(I5,A35..B45,1).

    9. Copy this formula for all the students.
    10. Print out a final copy of the complete grade book.