Excel Formula Help

M

Mark Solesbury

Hello

Ive got some 'scores' to put into excel. For each score, a set number of
points is awarded.

Score - 0-5 - No Points
6-9 - 12 points
10-11 - 20 points
12+ - 25 Points

Ive been trying to get a formula to calculate the points and enter it in
a different cell.

Any Help?

Mark.
 
G

Guest

Let's say your score is in cell A1, use this formula in the cell where you
want the points to appear:

=IF(A1<=5,0,IF(A1<=9,12,IF(A1<=11,20,25)))

HTH,
Elkar
 

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

Top