Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
NicoleLT06
 
Posts: n/a
Default How do a I use a spread sheet to track grades?

I'm trying to use Excel, which I know is possible, to set up a grade book
without using a template. I can enter students and points, I just don't know
how to get it to average and give a letter grade. I don't want to download a
template because I know there's a way to do it without one.
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default How do a I use a spread sheet to track grades?

Nicole

To get an average use the AVERAGE function as in =AVERAGE(A1:A50)

To convert scores to letter grades use a Lookup table and VLOOKUP functions.

OR a Lookup formula without a table

Assuming scores are in column A starting at A1.

In B1 enter this formula then drag/copy down column B

=LOOKUP(A1,{0,31,41,51,61,71,81,91,101},{"E","D"," C-","C","C+","B","B+","A"})

Example only. Adapt for your scores and grades.

Note the curly braces internally.


Gord Dibben MS Excel MVP


On Tue, 10 Jan 2006 16:16:03 -0800, "NicoleLT06"
wrote:

I'm trying to use Excel, which I know is possible, to set up a grade book
without using a template. I can enter students and points, I just don't know
how to get it to average and give a letter grade. I don't want to download a
template because I know there's a way to do it without one.


  #3   Report Post  
Posted to microsoft.public.excel.misc
pinmaster
 
Posts: n/a
Default How do a I use a spread sheet to track grades?

This might help!

let's assume you have test score in A1:A10, you would use =AVERAGE(A1:A10)
in B1 to get an average score, then in another cell you would put:
=LOOKUP(B1,{0,55,60,65,70,75,80,85,90,95,100},{"F" ,"D","C-","C","C+","B-","B","B+","A-","A","A+"})
to get a matching grade.

{0,55,60,65,70,75,80,85,90,95,100}..... these scores will trigger a
different letter grade...... i.e a score of 63 would be C-, a 50 an F and so
on.
and
{"F","D","C-","C","C+","B-","B","B+","A-","A","A+"}...matching letter grades

of course the scores and matching letter grade are just made up so you would
need to ajust them. Just make sure you have the same number of entry in each
brackets.

Hope this help!
JG



"NicoleLT06" wrote:

I'm trying to use Excel, which I know is possible, to set up a grade book
without using a template. I can enter students and points, I just don't know
how to get it to average and give a letter grade. I don't want to download a
template because I know there's a way to do it without one.

  #4   Report Post  
Posted to microsoft.public.excel.misc
mevetts
 
Posts: n/a
Default How do a I use a spread sheet to track grades?


Can it be done so a range of numbers applies to a certain grade?

Example -

50-55 = C
56-60 = B
61-100 = A


--
mevetts


------------------------------------------------------------------------
mevetts's Profile: http://www.excelforum.com/member.php...o&userid=29130
View this thread: http://www.excelforum.com/showthread...hreadid=499985

  #5   Report Post  
Posted to microsoft.public.excel.misc
pinmaster
 
Posts: n/a
Default How do a I use a spread sheet to track grades?

Yes, all you need to is alter the lookup value and corresponding grades.
=LOOKUP(A1,{0,50,56,61},{"D","C","B","A"})

HTH
JG

"mevetts" wrote:


Can it be done so a range of numbers applies to a certain grade?

Example -

50-55 = C
56-60 = B
61-100 = A


--
mevetts


------------------------------------------------------------------------
mevetts's Profile: http://www.excelforum.com/member.php...o&userid=29130
View this thread: http://www.excelforum.com/showthread...hreadid=499985




  #6   Report Post  
Posted to microsoft.public.excel.misc
mevetts
 
Posts: n/a
Default How do a I use a spread sheet to track grades?


Sorry, I'm being a bit dumb, please could you show me an example?



--
mevetts


------------------------------------------------------------------------
mevetts's Profile: http://www.excelforum.com/member.php...o&userid=29130
View this thread: http://www.excelforum.com/showthread...hreadid=499985

  #7   Report Post  
Posted to microsoft.public.excel.misc
pinmaster
 
Posts: n/a
Default How do a I use a spread sheet to track grades?

Well for example you have a range of numbers in A1:A4

A1 - 84
A2 - 50
A3 - 62
A4 - 46

by using this formula in B1 =LOOKUP(A1,{0,50,56,61},{"D","C","B","A"}) and
copying down to B4, you would get grades of

B1 - A
B2 - C
B3 - B
B4 - D

numbers in the first brackets represents the starting number for a
corresponding grade in the second bracket.... hence from 0 to 49 you get a
grade of "D", from 50 to 55 you get "C", from 56 to 60 an "B" and from 61 on
up an "A".

Does that help?
JG


"mevetts" wrote:


Sorry, I'm being a bit dumb, please could you show me an example?



--
mevetts


------------------------------------------------------------------------
mevetts's Profile: http://www.excelforum.com/member.php...o&userid=29130
View this thread: http://www.excelforum.com/showthread...hreadid=499985


  #8   Report Post  
Posted to microsoft.public.excel.misc
mevetts
 
Posts: n/a
Default How do a I use a spread sheet to track grades?


Yes, thanks. I didn't realise it worked from the initial integer up to
the next, clever.


--
mevetts


------------------------------------------------------------------------
mevetts's Profile: http://www.excelforum.com/member.php...o&userid=29130
View this thread: http://www.excelforum.com/showthread...hreadid=499985

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
I'm creating a simple spread sheet Jan in Excel Excel Discussion (Misc queries) 2 January 2nd 06 07:48 PM
Inventory sheet to track, order & reduce quantity from master. drc536 New Users to Excel 2 October 23rd 05 05:36 PM
Make inventory sheet to track, order & reduce quantity from master drc536 Excel Worksheet Functions 1 October 23rd 05 05:35 PM
Can I add more columns to a spread sheet or is limit 256 columns Piper Excel Discussion (Misc queries) 4 October 9th 05 08:27 PM
Excel Slow to open Spread Sheet from Explorer Charles Welty Excel Discussion (Misc queries) 0 October 5th 05 02:16 PM


All times are GMT +1. The time now is 03:10 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"