Hello, I have built the following formula but for some reason the last part of the formula is pulling a blank result, can anyone see what I have done wrong please? If the result is 12 and Internal it pulls blank instead of Creds / prior slides. Everything else works. Thank you.
=IF(AND([Total Score]@row >= 35, [Total Score]@row <= 45), "Must Win", IF(AND([Total Score]@row >= 25, [Total Score]@row <= 34), "Strong Response", IF(AND([Total Score]@row >= 18, [Total Score]@row <= 25), "Informed creds", IF([Total Score]@row < 18, IF([Request type]@row = "RFP", "Reject", IF([Total Score]@row < 10, IF([Request type]@row = "Internal", "Reject", IF(AND([Total Score]@row >= 10, [Total Score]@row <= 17), IF([Request type]@row = "Internal", "Creds / prior slides", "Reject")))))))))
Condition 1
If score is between 35 and 45 then return “Must Win”
Condition 2
If score is between 25 and 34 then return “Strong response”
Condition 3
If score is between 18-25 then return “informed creds”
Condition 4
If score is between 10-17 AND Internal then return “Creds Only”
Condition 5
If score is equal to or under 17 AND RFP then return “Reject”
Condition 6
If score is equal to or under 9 AND Internal then return “Reject”