Basically I am creating a report on our Asbestos Register requested by our H&S team basically they would like the following but in a formula.
If total score is greater than 15 display "Band A" if total score is greater or equal to 10 display "Band B" if total score is less than or equal to 14 display "Band B" if total score is less than or equal to 9 display "Band C" if total score is less than or equal to 6 display "Band D" other wise display "Band E"
We have been playing around with the below formula but is keeps coming up #unparsed
=IF([Total Score]@row > 15, "Band A", IF([Total Score]@row >= 10 AND([Total Score]@row <= 14), "Band B", IF([Total Score]@row >= 7 AND([Total Score]@row <= 9), "Band C", IF([Total Score]@row <= 6 AND([Total Score]@row > 0), "Band D", "Band E"))))
The Risk Bands are as follows:
Band A = 15 Points or more
Band B = 10-14 Points
Band C = 7-9 Points
Band D = 6 Points or less
Band E = 0 Points