Can anybody see the issue with this formula?
I've counted and there are 8 open/8 closed parentheses, and two criteria for each of the IF(AND( statements
=IF(ProdScore2/HrsWorked2 >= 4.4, "Outstanding",
IF(AND(ProdScore2/HrsWorked2 <= 4.3,ProdScore2/HrsWorked2 >=3.8 , "Very Strong",
IF(AND(ProdScore2/HrsWorked2 <= 3.7, ProdScore2/HrsWorked2 >=3.2, "Effective",
IF(AND(ProdScore2/ HrsWorked2 <= 3.1, ProdScore2/HrsWorked2 >=2.5 "Needs Improvement",
IF(ProdScore2/ HrsWorked2 <=2.4 , "Unsatisfactory"))))))))
Any help would be much appreciated!