Formulas

G

Guest

How do I write a formula that will assign letters to a range of number
values. For example, I have a range of test scores in a column. In the next
column I want corresponding letters. 90 to 100=A; 70 to 89=P, 0 to 69=B.

Thanks,
Nordic
 
G

Guest

You can use the VLOOKUP function to do this.

For example, in cell E10, enter the following function...

=IF(E8<>"",VLOOKUP(E8/C8,$Q$7:$R$18,2),"")

In this example, I created a range of values starting in Q7 and ending in
R18. Column Q is my quality points (numeric values), and column R is my
letter grades.

Q7 = 0.0
R7 = F
Q8 = .6667
R8 = D-
etc.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top