Not just True/False

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm would like to have a cell display Pass, Conditional, or Fail depending on
a score in another cell. For example, if the score is below 60, display
Fail, between 60 and 70 display Provisional, >70, display Pass. I can get
pass/fail, but not the three responses.

Help???

Thanks
 
Try this:

=IF(A1<60,"Fail",IF(A1<=70,"Provisional","Pass"))

HTH,
Elkar
 
=IF(B2<60,"Fail",IF(AND(B2>60,B2<71),"Provisional","pass"))

Change B2 to the cell your looking at.
 

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

Back
Top