Hi, i am working on an IF statement and am going round in circles. my statement seems to get as far as 3 star in the statement and no further even though the criteria says it should.
For 5 star and 4 star it references a different column to count if the ticket number is above 50. Do I need an esle???
=IF(AND(Threshold@row < "0.1", [Grand Total-SUM-Ticket sum]@row >= 42), "5 Star", IF(OR(AND(Threshold@row >= "0.11", Threshold@row < "0.2"), [Grand Total-SUM-Ticket sum]@row >= 50), "4 Star", IF(OR(Threshold@row >= "0.21", Threshold@row < "0.3"), "3 Star", AND(IF(OR(Threshold@row >= "0.3", Threshold@row < "0.5"), "2 Star", IF(Threshold@row > "0.51", "1 Star"))))))
Why is this and what am i doing wrong?
Thanks!!