Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
vortex0001
 
Posts: n/a
Default How do I convert a given number into a letter?

Basically, I am creating a gradebook for my classes and am interseted in how
to convert a % into a letter grade
  #2   Report Post  
Dave Peterson
 
Posts: n/a
Default

Debra Dalgleish has instructions about using =vlookup() and she uses a gradebook
as an example:

http://contextures.com/xlFunctions02.html



vortex0001 wrote:

Basically, I am creating a gradebook for my classes and am interseted in how
to convert a % into a letter grade


--

Dave Peterson
  #3   Report Post  
JMB
 
Posts: n/a
Default

You could enter a table in descending order showing the grade ranges such as:

0 F
60 D
70 C
80 B
90 A

then use VLOOKUP to look the score up in the table and return the letter
grade.

For example, the table is in cell A1:B5 and cell A8 contains a score of 86:

=VLOOKUP(A8,$A$1:$B$5,2,TRUE) will return B




"vortex0001" wrote:

Basically, I am creating a gradebook for my classes and am interseted in how
to convert a % into a letter grade

  #4   Report Post  
Biff
 
Posts: n/a
Default

Hi!

Create a table like the one below:

0............F
60..........D
70..........C
80..........B
90..........A

The above table is based on this grade scale:

0 to 59 = F
60 to 69 = D
70 to 79 = C
80 to 89 = B
90+ = A

Then use a formula like this:

=VLOOKUP(A1,H1:I5,2,1)

A1 = numeric grade
H1:H5 = table range

Biff

"vortex0001" wrote in message
...
Basically, I am creating a gradebook for my classes and am interseted in
how
to convert a % into a letter grade



  #5   Report Post  
Krishnakumar
 
Posts: n/a
Default


Hi,

If you want avoid a table then try this,

=LOOKUP(C2,{0,"F";60,"D";70,"C";80,"D";90,"A"})

where C2 houses the score.

HTH


--
Krishnakumar


------------------------------------------------------------------------
Krishnakumar's Profile: http://www.excelforum.com/member.php...o&userid=20138
View this thread: http://www.excelforum.com/showthread...hreadid=465803



  #6   Report Post  
Arvi Laanemets
 
Posts: n/a
Default

Hi

=CHOOSE(MATCH(A1,{0;0.6;0.7;0.8;0.9};1),"F","E","D ","C","A")


--
Arvi Laanemets
( My real mail address: arvil<attarkon.ee )



"vortex0001" wrote in message
...
Basically, I am creating a gradebook for my classes and am interseted in
how
to convert a % into a letter grade



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
Assigning a number value to a letter? Orphan86 Excel Discussion (Misc queries) 3 August 30th 05 11:45 PM
Convert Social Security text to number? Joe Excel Discussion (Misc queries) 2 June 27th 05 07:56 PM
how to add a letter in front of each number in a cell nmodafferi Excel Discussion (Misc queries) 15 June 16th 05 08:58 PM
convert number to text in Spanish Language Jara Excel Worksheet Functions 2 May 27th 05 03:51 AM
How I convert number to word swastik Excel Discussion (Misc queries) 1 January 6th 05 01:17 PM


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

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"