
I am trying to solve a problem here is the criteria: I have a number of cells (9 in total) that require a score of 1-3. They will effect the total score for cell AB21.
I have a count function counting all the number 1's in cell AB40
and a count function counting all the number 2's in AC40
These are the only two numeric values that affect the outcome. And matter.
Cell AB21 will have a possible value of 1-4
The criteria are as follows a rating(value) of 4 = no more than 1 (number 1) in cell ab40. And no (number 2's) in ac40
a rating of 3 = 1 (number 1) and 0-1 (number 2's) or 0 (number 1's) and 2-3 (number 2's)
a rating of 2 = 2 (number 1's) and 0-1 (number 2's) or 1 (number 1) and 2-3 (number 2's) or 0 (number 1's) and 4+ (number 2's)
a rating of 1 = 3+ (number 1's) or 6+ (number 2's) or 2 (number 1's) and 2+ (number 2's) or 1 (number 1) and 4+ (number 2's)
The formula I am attemting to use is as follows:
=IF(AND(AB40<1,AC40<=1),4,IF(AND(AB40=1,AC40<=1),3 ,IF(AND(AB40=0,AC40>1<=3),3,if(and(AB40=2,ac40<=1) ,2,if(and(ab40=1,ac40>=2<=3),2,if(and(ab40=0,ac40= 4),2,if(ab40>3,1,if(ac40>6,1,if(and(ab40=2,ac40>=2 ),1,if(and(ab40=1,ac40>=4,1)))))))))
I am probably making this more difficult than it has to be, and you probably have no idea what I am trying to do after reading this. But if you have any ideas I would love to hear them.
Thanks for the help
