Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Increasing a range of grades available

Hi

I am trying to get a formula to work that will assign a grade to a cell
based on a numeric result. As as an example if a student scores anything
above 84.99 (grade recorded in Cell D8) the grade of HD is assigned by the
formula listed below.

=IF(D884.99,"HD",IF(D874.99,"D",IF(D864.99,"C", IF(D849.99,"P",IF(D842.99,"PC",IF(D8=0.1,"F"))) )))

I need to be able to split these broad grades into upper and lower ranges,
for instance a student who scores 96 will get a grade of HD+ but the formula
above doesn't recognise this. Similarly a student might get 82 which equates
to a D+.

I need a formula that will lookup a grade in cell D8 and assign a letter
grade based on the following:
HD+ = 95; HD = =90; HD = =85; D+ = =82; D = =80; D- = =75; C+ = =72;
C = =70; C- = =65; P+ = =60; P = =55; P- = =50; PC = =43; F = <=42

Any ideas would be greatly appreciated

Thanks Brian
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default Increasing a range of grades available

Hi!

Create a 2 column table:

............A............B
1.........0............F
2........43...........PC
3........50...........P-
4........55...........P
5........60...........P+
6........65..........C-
...
13......95..........HD+

Then use this formula:

=IF(D8="","",VLOOKUP(D8,A1:B13,2))

Biff

"confused teacher" wrote in
message ...
Hi

I am trying to get a formula to work that will assign a grade to a cell
based on a numeric result. As as an example if a student scores anything
above 84.99 (grade recorded in Cell D8) the grade of HD is assigned by the
formula listed below.

=IF(D884.99,"HD",IF(D874.99,"D",IF(D864.99,"C", IF(D849.99,"P",IF(D842.99,"PC",IF(D8=0.1,"F"))) )))

I need to be able to split these broad grades into upper and lower ranges,
for instance a student who scores 96 will get a grade of HD+ but the
formula
above doesn't recognise this. Similarly a student might get 82 which
equates
to a D+.

I need a formula that will lookup a grade in cell D8 and assign a letter
grade based on the following:
HD+ = 95; HD = =90; HD = =85; D+ = =82; D = =80; D- = =75; C+ =
=72;

C = =70; C- = =65; P+ = =60; P = =55; P- = =50; PC = =43; F = <=42

Any ideas would be greatly appreciated

Thanks Brian



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 860
Default Increasing a range of grades available

Hi confused teacher,

One way would be to put the numbers 1 to 100 in column A
and in column B put the corresponding grade then use a
VLOOKUP formula to access it.
You could hide the lookup table or put it in a separate worksheet.

HTH
Martin


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Increasing a range of grades available


Thanks, This is a great help.

Brian
"Biff" wrote:

Hi!

Create a 2 column table:

............A............B
1.........0............F
2........43...........PC
3........50...........P-
4........55...........P
5........60...........P+
6........65..........C-
...
13......95..........HD+

Then use this formula:

=IF(D8="","",VLOOKUP(D8,A1:B13,2))

Biff

"confused teacher" wrote in
message ...
Hi

I am trying to get a formula to work that will assign a grade to a cell
based on a numeric result. As as an example if a student scores anything
above 84.99 (grade recorded in Cell D8) the grade of HD is assigned by the
formula listed below.

=IF(D884.99,"HD",IF(D874.99,"D",IF(D864.99,"C", IF(D849.99,"P",IF(D842.99,"PC",IF(D8=0.1,"F"))) )))

I need to be able to split these broad grades into upper and lower ranges,
for instance a student who scores 96 will get a grade of HD+ but the
formula
above doesn't recognise this. Similarly a student might get 82 which
equates
to a D+.

I need a formula that will lookup a grade in cell D8 and assign a letter
grade based on the following:
HD+ = 95; HD = =90; HD = =85; D+ = =82; D = =80; D- = =75; C+ =
=72;

C = =70; C- = =65; P+ = =60; P = =55; P- = =50; PC = =43; F = <=42

Any ideas would be greatly appreciated

Thanks Brian




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default Increasing a range of grades available

You're welcome!

Biff

"confused teacher" wrote in
message ...

Thanks, This is a great help.

Brian
"Biff" wrote:

Hi!

Create a 2 column table:

............A............B
1.........0............F
2........43...........PC
3........50...........P-
4........55...........P
5........60...........P+
6........65..........C-
...
13......95..........HD+

Then use this formula:

=IF(D8="","",VLOOKUP(D8,A1:B13,2))

Biff

"confused teacher" wrote in
message ...
Hi

I am trying to get a formula to work that will assign a grade to a cell
based on a numeric result. As as an example if a student scores
anything
above 84.99 (grade recorded in Cell D8) the grade of HD is assigned by
the
formula listed below.

=IF(D884.99,"HD",IF(D874.99,"D",IF(D864.99,"C", IF(D849.99,"P",IF(D842.99,"PC",IF(D8=0.1,"F"))) )))

I need to be able to split these broad grades into upper and lower
ranges,
for instance a student who scores 96 will get a grade of HD+ but the
formula
above doesn't recognise this. Similarly a student might get 82 which
equates
to a D+.

I need a formula that will lookup a grade in cell D8 and assign a
letter
grade based on the following:
HD+ = 95; HD = =90; HD = =85; D+ = =82; D = =80; D- = =75; C+ =
=72;
C = =70; C- = =65; P+ = =60; P = =55; P- = =50; PC = =43; F =
<=42

Any ideas would be greatly appreciated

Thanks Brian






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
Duplicate Range Names by worksheet FlaAl Excel Discussion (Misc queries) 0 May 24th 06 05:14 PM
Help with using range names in sum function soteman2005 Excel Worksheet Functions 2 November 28th 05 04:43 PM
How to Select a relative range with Using "Find" and Offset() Dennis Excel Discussion (Misc queries) 7 July 27th 05 03:57 PM
Can a formula check for a certain value in a range? Lee IT Excel Discussion (Misc queries) 3 April 8th 05 07:36 AM
can a formula check for a certain value in a range? Lee IT Excel Discussion (Misc queries) 1 April 7th 05 04:31 PM


All times are GMT +1. The time now is 11:54 PM.

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

About Us

"It's about Microsoft Excel"