I'm trying to compare data from 2 columns to result in a rating.
I'm trying to break it down first before going crazy with multiple IF AND statements. Below is the first working example:
IF(AND(A=100, B=100), 5, BLANK())
Below are the conditions
- IF A=100 AND B=100, rate 5
- IF A<100, A>=97 AND B<100, B>=97, rate 4
- IF A<97, A>=94 AND B<97, B>=94, rate 3
I have tried the following and it's not working
IF(AND(A=100, B=100), 5, IF(OR(AND(A<=100, A>=97), AND(B<=100,B>=78))), 4, BLANK()))