I have a column that has values between 1-10 and I am attempting to use a nested IF statement to generate a value based on that number range. If the number is >= 8, it should be "1 - High", <= 3, it should be "3 - Low", and finally > 3 AND < 8 should be "2 - Medium". Here is what I am attempting use: =IF(G4>=8, "1 - High", IF(G4<=3, "3 - Low", IF(AND(G4>3, G4 <8), "2 - Medium"))). The high and the low portion work, but I can't get medium to show up properly. Any help would be appreciated.