Nested IF Statement

  • Thread starter Thread starter aposatsk
  • Start date Start date
A

aposatsk

How can I modify this IF statement to also display "Invalid Value" if
"D7 < 0" ?

=IF(D7=0,"Not Evaluated",IF(D7<10,"Fail",IF(D7=10, "Pass", "Invalid
Value")))
 
=IF(D7<0,"Invalid Value",IF(D7=0,"Not Evaluated",IF(D7<10,"Fail",IF(D7=10,
"Pass", "Invalid Value"))))

Vaya con Dios,
Chuck, CABGx3
 
What if the result is > 10 ????

=IF(D7<0,"Invalid Value",IF(D7=0,"Not Evaluated",IF(D7<10,"Fail",IF(D7=10,
"Pass", "??"))))

If >=10 is a PASS then:

=IF(D7<0,"Invalid Value",IF(D7=0,"Not Evaluated",IF(D7<10,"Fail", "Pass")))
 
If > 10 is "Invalid Value" .....

=IF(OR(D7<0,D7>10),"Invalid Value",IF(D7=0,"Not Evaluated",IF(D7<10,"Fail",
"Pass")))
 

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