|
|
Quote:
Originally Posted by Jooniper
I am trying to award points for performance using an IF function.
So, if they score less than 90%, 0 points, 90-94%=5 points, 94-95%=7 points and 95%=10 points.
I have tried to start this formula, but I am stuck. So any help would be great!
Here is whaty I wrote so far:
=IF((B8<=90%),0),(IF(AND(B890%,B8<=94%),5),(IF(AN D(B894%, B8=95%),7),((IF( B895%, 10, "no")))))
All help greatly received
|
Does this do what you need?
=IF(AND(B8=0%,B8<90%),0,IF(AND(B8=90%,B8<=94%),5 ,IF(AND(B894%,B8<=95%),7,IF(B895%,10))))
|