#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 21
Default Grading Scores

I need a formula for
if 100 - 98 = A
97 - 95 = B
94 - 90 = C
90 = D


Thank you for you help.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Grading Scores

Try the below

=IF(AND(A10,A1<=100),LOOKUP(A1+0,{0,90,95,98},{"D ","C","B","A"}),"")

If this post helps click Yes
---------------
Jacob Skaria


"dchristo" wrote:

I need a formula for
if 100 - 98 = A
97 - 95 = B
94 - 90 = C
90 = D


Thank you for you help.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,939
Default Grading Scores

=IF(A1< 90, "D", IF(A1< 95, "C", IF(A1 < 98, "B", "A")))

Where your score is in A1...
--
HTH...

Jim Thomlinson


"dchristo" wrote:

I need a formula for
if 100 - 98 = A
97 - 95 = B
94 - 90 = C
90 = D


Thank you for you help.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,420
Default Grading Scores

=LOOKUP(A20,{0,90,95,98},{"D","C","B","A"})

--
__________________________________
HTH

Bob

"dchristo" wrote in message
...
I need a formula for
if 100 - 98 = A
97 - 95 = B
94 - 90 = C
90 = D


Thank you for you help.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 21
Default Grading Scores

Everything is coming back as a "D"

"Jacob Skaria" wrote:

Try the below

=IF(AND(A10,A1<=100),LOOKUP(A1+0,{0,90,95,98},{"D ","C","B","A"}),"")

If this post helps click Yes
---------------
Jacob Skaria


"dchristo" wrote:

I need a formula for
if 100 - 98 = A
97 - 95 = B
94 - 90 = C
90 = D


Thank you for you help.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default Grading Scores

=LOOKUP(A1,{0,90,95,98;"D","C","B","A"})

--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"dchristo" wrote in message
...
I need a formula for
if 100 - 98 = A
97 - 95 = B
94 - 90 = C
90 = D


Thank you for you help.


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Grading Scores

Paste the formula as such in cell B1
=IF(AND(A10,A1<=100),LOOKUP(A1+0,{0,90,95,98},{"D ","C","B","A"}),"")

and enter values in A1 and see....This works only if value is between 1 and
100 (both inclusive)

If this post helps click Yes
---------------
Jacob Skaria


"dchristo" wrote:

Everything is coming back as a "D"

"Jacob Skaria" wrote:

Try the below

=IF(AND(A10,A1<=100),LOOKUP(A1+0,{0,90,95,98},{"D ","C","B","A"}),"")

If this post helps click Yes
---------------
Jacob Skaria


"dchristo" wrote:

I need a formula for
if 100 - 98 = A
97 - 95 = B
94 - 90 = C
90 = D

Thank you for you help.

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 120
Default Grading Scores

One other way, arrange your table as follow in a far away location
and hide it if you want on the spreadsheet and use this formula

=IF(ISNA(VLOOKUP(C2,A2:B5,2,1)),"D",VLOOKUP(C2,A2: B5,2,1))

Grade score
89 D
90 C
95 B
98 A

Change the references according to yours
--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked

Thank You

cheers, francis

Am not a greek but an ordinary user trying to assist another



"dchristo" wrote:

I need a formula for
if 100 - 98 = A
97 - 95 = B
94 - 90 = C
90 = D


Thank you for you help.

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
excel golf scores, how do I add the scores for all par 3's etc Golf Analyst Excel Worksheet Functions 2 November 24th 07 02:25 PM
Grading Values build Excel Worksheet Functions 2 October 14th 07 03:13 PM
grading miranda Excel Worksheet Functions 2 July 27th 07 04:18 PM
Grading function in Excel Shreekant Patel Excel Worksheet Functions 7 May 7th 07 03:00 AM
How to find average for grading? Param Excel Worksheet Functions 3 March 4th 07 10:17 AM


All times are GMT +1. The time now is 02:54 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"