View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
KL KL is offline
external usenet poster
 
Posts: 201
Default Excel Formula Help take 2

Range [A1:B4]:
0 No Points
6 12 Points
10 20 Points
12 25 Points

Range [C1]:
your actual score

Formula:
=VLOOKUP(C1,A1:B4,2)

or without additional tables:

Formula:
=INDEX({"No",12,20,25},MATCH(C1,{0,6,10,12}))&" Points"

--
KL
[MVP - Microsoft Excel]
RU: http://www.mvps.ru/Program/Default.aspx
ES: http://mvp.support.microsoft.com/?LN=es-es
EN: http://mvp.support.microsoft.com/?LN=en-us
Profile: https://mvp.support.microsoft.com/pr...A-9E6C73C09A36


"Mark Solesbury" wrote in message ...
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.