I am using a nested IF formula with multiple conditions that looks at two cells (D7 and C7). See below:
=IF(AND(D7=100%,C7=100%),5,IF(AND((D7=100%),AND(100%>C7,C7>94%)),4,IF(AND(D7=100%,C7<95%),3,IF(AND(D7>89%,D7<100%),2,IF(D7<90%,1,0)))))
The table that is used to qualify the resulting...