+ Reply to Thread
Results 1 to 10 of 10

Calculating which students make honor roll

  1. #1
    Registered User
    Join Date
    12-19-2015
    Location
    Maine
    MS-Off Ver
    Office 2008 for Mac
    Posts
    3

    Talking Calculating which students make honor roll

    Hi,

    I work at a public school and I'm hoping one of you knows if there's a simple way to extract from a data set which students made the honor roll. Right now teachers have to visually scan the printed report cards and report the names of the students who made honor roll to the main office.

    Is there an excel function (I'm thinking a pivot table report or a nested if function, maybe?) that can help?

    Let me describe the data set:

    There will be a column with student ID #s, a column with the course name, and a column with the final grade. There will be 7 or so rows for each student.

    Honor roll is defined as getting 90 or higher in every class. High honors is defined as getting 95 or higher in every class.

    Can I somehow extrapolate ONLY those student numbers for students that made the honor roll and high honors?

    I guess it would be something like, if all the values in column A (student ID #) are the same, and all the values in column C corresponding to those same rows (final grade) are greater than or equal to 90, return those student numbers?

    Thanks a lot for any guidance you may be able to offer.

    Leah

    http://www.mrexcel.com/forum/excel-q...onor-roll.html
    Last edited by leahf; 12-19-2015 at 09:05 PM. Reason: Include cross-post link

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Calculating which students make honor roll

    Cross-posted at http://www.mrexcel.com/forum/excel-q...ml#post4375006
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Registered User
    Join Date
    12-19-2015
    Location
    Maine
    MS-Off Ver
    Office 2008 for Mac
    Posts
    3

    Re: Calculating which students make honor roll

    My humble apologies; I didn't realize the sites were related. Thank you shg

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Calculating which students make honor roll

    Your post does not comply with Rule 8 of our Forum RULES. Do not crosspost your question on multiple forums without including links here to the other threads on other forums.

    Cross-posting is when you post the same question in other forums on the web. The last thing you want to do is waste people's time working on an issue you have already resolved elsewhere. We prefer that you not cross-post at all, but if you do (and it's unlikely to go unnoticed), you MUST provide a link (copy the url from the address bar in your browser) to the cross-post.

    Expect cross-posted questions without a link to be closed and a message will be posted by the moderator explaining why. We are here to help so help us to help you!

    Read this to understand why we ask you to do this, and then please edit your first post to include links to any and all cross-posts in any other forums (not just this site).
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  5. #5
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Calculating which students make honor roll

    Quote Originally Posted by leahf View Post
    My humble apologies; I didn't realize the sites were related. Thank you shg
    They are not related, but many members here are also members there

  6. #6
    Forum Guru
    Join Date
    08-28-2014
    Location
    USA
    MS-Off Ver
    Excel 365 version 2501
    Posts
    18,904

    Re: Calculating which students make honor roll

    This solution works for ver. 2010 and I believe that it will work for you on Mac. First populate the column that has student ID's by 1) Selecting the column; 2) Under "Find & Select" choose "Go to special" and "Blanks" 3) Use the key strokes =; up arrow and Enter. At this point all of the rows in the ID column should have a number. I will now add five "helper" columns. The first will be for the lowest grade made by that student and employ the array formula (activated by Ctrl+Shift+Enter):
    Please Login or Register  to view this content.
    The second will be for the student numbers of those students that have between 90 and 94 as a lowest grade using the formula:
    Please Login or Register  to view this content.
    The third will be for the student numbers of those students that have a 95 and above as a lowest grade using the formula:
    Please Login or Register  to view this content.
    The fourth and fifth will filter the second and third so that the ID numbers will appear in the top rows of those columns using aggregate formulas. Here is a example file showing the application of those methods and formulas:
    Honor Roll.xlsx
    Let me know if you have any questions, if my example doesn't match your data layout please upload a sample spreadsheet.
    Consider taking the time to add to the reputation of everybody that has taken the time to respond to your query.

  7. #7
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Calculating which students make honor roll

    Here is my entry into the contest.

    I converted the range into a table because the formulas are easier to read.

    This wiki has information on Excel tables: http://www.utteraccess.com/wiki/inde...ables_in_Excel

    It uses SUMPRODUCT to assign ranks based on score and courses signed up for. This wiki explains how SUMPRODUCT works: http://www.utteraccess.com/wiki/inde...Array_Formulas

    Rank 1 is simple: =SUMPRODUCT(([Score]>[@Score])*([1st]=[@1st]))+1

    What this formula says is find the rank based on the score and peoples’ first choices. We add one so the rankings start with one instead of zero.

    Select 1 is: =[@[Rank 1]]<=VLOOKUP([@1st],Table_Courses,2,FALSE)

    Basically this says if the rank is less than or equal to the number of seats, the person is in.

    Assign just looks up the information requested.

    Rank 2 is more complicated: =IF([@[Select 1]]=TRUE,99,SUMPRODUCT(([Score]>[@Score])*([2nd]=[@2nd])*([Select 1]<>TRUE))+1)

    This formula has to account for people who were already selected in the first round. They are assigned a rank of 99 so they won’t be selected on this round.

    Select 2 uses the same logic as Select 1.

    Rank 3 gets more complicated: =IF(OR([@[Select 1]]=TRUE,[@[Select 2]]=TRUE),99,SUMPRODUCT(([Score]>[@Score])*([3rd]=[@3rd])*([Select 2]<>TRUE)*([Select 1]<>TRUE))+1)

    It has to account for people who were selected in both the first and second round. This is as far as I took it. Obviously the following rounds will get more complicated.
    Attached Files Attached Files

  8. #8
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Calculating which students make honor roll

    Oops. Seems to be posted to the wrong question. Don't know how to delete a post. Relatively new and am still having problems navigating the site.

  9. #9
    Registered User
    Join Date
    12-19-2015
    Location
    Maine
    MS-Off Ver
    Office 2008 for Mac
    Posts
    3

    Re: Calculating which students make honor roll

    Hi JeteMC!

    This worked BEAUTIFULLY for my application!! Thank you SO much.

    -L

  10. #10
    Forum Guru
    Join Date
    08-28-2014
    Location
    USA
    MS-Off Ver
    Excel 365 version 2501
    Posts
    18,904

    Re: Calculating which students make honor roll

    You're Welcome and thank you for the enthusiastic feedback. Please take a moment to mark the thread 'Solved' using the thread tools link above your first post. Hope that you have a good day.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Calculating GPA for random number of subjects for differnt students
    By dimuthumme in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 04-06-2015, 06:21 AM
  2. [SOLVED] How to make a pay - roll set of fnctns, all to import a number from a common cell ?
    By ELANDREAKIS in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 02-07-2014, 09:23 AM
  3. Calculating points and divisions of students scores in excel
    By Edward Masoya in forum Excel General
    Replies: 4
    Last Post: 03-28-2013, 12:40 PM
  4. Can you make the data roll with the date??
    By ed2339 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-30-2013, 12:46 PM
  5. Calculating points and divisions of students scores in excel
    By Edward Masoya in forum Excel General
    Replies: 4
    Last Post: 04-08-2012, 01:45 PM
  6. calculating a penalty for late submited coursework for students
    By spartan11chin in forum Excel General
    Replies: 2
    Last Post: 12-01-2009, 06:50 AM
  7. Replies: 0
    Last Post: 02-01-2006, 09:10 PM

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