Hi all --
I'm trying to write a formula that will return a point value (0-10) depending on the percentage of a column. For example: if the percentage column is 100%, then I'd want "10" to be entered in the "Points" column; if the percentage column is between 99% or above but below 100%, I'd want "9" to be entered in the "Points" column, and so on and so forth. If the percentage column is less than or equal to 90%, the points column would say "0".
Here's the formula I've written so far, but it's just returning "0":
=IF([Jan %]9 = 100, 10, (IF(AND([Jan %]9 <= 99, [Jan %]9 > 98), 9, (IF(AND([Jan %]9 <= 98, [Jan %]9 > 97), 8, (IF(AND([Jan %]9 <= 97, [Jan %]9 > 96), 7, (IF(AND([Jan %]9 <= 96, [Jan %]9 > 95), 6, (IF(AND([Jan %]9 <= 95, [Jan %]9 > 94), 5, (IF(AND([Jan %]9 <= 94, [Jan %]9 > 93), 4, (IF(AND([Jan %]9 <= 93, [Jan %]9 > 92), 3, (IF(AND([Jan %]9 <= 92, [Jan %]9 > 91), 2, (IF(AND([Jan %]9 <= 91, [Jan %]9 > 90), 1, (IF([Jan %]9 < 90, 0)))))))))))))))))))))
(I know, it's long!)
Here's a screenshot of this section of the sheet:
Thanks for any help you can provide!