Judy,
If comparing two values, you need AND, such as
G4>=0.25<=0.399 should be AND(G4>=0.25,G4<=0.399)
but in this case the previous test precludes re-testing the first part, so
all you need is
=IF(G4<=0.249,"A",(IF(G4<=0.399,"B",(IF(G4<=0.499,"C",(IF(G4<=0.599,"D",(IF(
G4<=0.849,"E",(IF(G4<=1.749,"F",(IF(G4<=3.149,"G",(IF(G4<=99.999,"H","")))))
))))))))))
--
HTH
RP
(remove nothere from the email address if mailing direct)
Judy said:
thanks to Bob and Zack -
now, I've got a long if statement, but it's not working perfectly yet. Do I
need to have ampersands or quotes anywhere that I missed? Do I have my less
than/greater than/equal signs mixed up?
=IF(G4<=0.249,"A",(IF(G4>=0.25<=0.399,"B",(IF(G4>=0.4<=0.499,"C",(IF(G4>=0.5