+ Reply to Thread
Results 1 to 6 of 6

How do I convert a given number into a letter?

  1. #1
    vortex0001
    Guest

    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. #2
    Dave Peterson
    Guest

    Re: How do I convert a given number into a letter?

    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. #3
    JMB
    Guest

    RE: How do I convert a given number into a letter?

    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. #4
    Biff
    Guest

    Re: How do I convert a given number into a letter?

    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" <[email protected]> wrote in message
    news:[email protected]...
    > Basically, I am creating a gradebook for my classes and am interseted in
    > how
    > to convert a % into a letter grade




  5. #5
    Forum Contributor
    Join Date
    02-19-2005
    Location
    Gurgaon,India
    MS-Off Ver
    2007,2010,2013
    Posts
    180
    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
    Kris

  6. #6
    Arvi Laanemets
    Guest

    Re: How do I convert a given number into a letter?

    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<at>tarkon.ee )



    "vortex0001" <[email protected]> wrote in message
    news:[email protected]...
    > Basically, I am creating a gradebook for my classes and am interseted in
    > how
    > to convert a % into a letter grade




+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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