IMHO, Ola's VLOOKUP option is the best choice. MATCH has the limitation that point values must increment by one (MATCH returns the *rank* of the value within the list, not the value itself). CHOOSE gets pretty cumbersome as you add more permutations.

VLOOKUP allows you to easily add or edit the values to be returned. The table of values can be placed in another sheet (you can even hide this sheet if you want to provide some security from prying eyes) and this range can be named, using the range name in the formula instead of a sheet/cell reference, e.g. =VLOOKUP(B2,Table1,2,1).

Good Luck

Bruce