I want to string several formulas together.

J

John

=IF(A1>0.6,(IF(A1>0.69,(IF(A1>0.79,(IF(A1>0.89,(IF(A1>0.9,"A","B")),"B")),"C")),"D")),"F")

Best regards

John
 
B

Bob Phillips

=LOOKUP(A1,{0,"F";0.6,"D";0.7,"C";0.8,"B";0.9,"A"})

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
G

Guest

Curt:

Just to add another suggestion.

The following will also work and it also handles the .9 and .6 as does
Bob Phillips's

=IF(A1>=0.9,"A",(IF(A1>=0.8,"B",(IF(A1>=0.7,"C",(IF(A1>=0.6,"D","F")))))))

Good luct
TK
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top