1 / 7

IF STATEMENT

IF STATEMENT. LESSON THREE. PMT OK. IF(E12<0.43,"YES","NO"). SCORE OK. IF(C12 >=$F$9,"YES","NO"). DOWN OK. IF(F12>0.1*D12,"YES",”NO ”) THIS USES A NESTED IF WITH A AND STATEMENT TO REPLACE “NO ” AND(F12>0.05*D12,E12<0.4 ) IF(AND(F12>0.05*D12,E12<0.4), "YES","NO"

Télécharger la présentation

IF STATEMENT

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. IF STATEMENT LESSON THREE

  2. PMT OK • IF(E12<0.43,"YES","NO")

  3. SCORE OK • IF(C12>=$F$9,"YES","NO")

  4. DOWN OK • IF(F12>0.1*D12,"YES",”NO”) • THIS USES A NESTED IF WITH A AND STATEMENT TO REPLACE “NO” • AND(F12>0.05*D12,E12<0.4) • IF(AND(F12>0.05*D12,E12<0.4), "YES","NO" • IF(F12>0.1*D12,"YES",IF(AND(F12>0.05*D12,E12<0.4), "YES","NO"))

  5. DISCOUNT OK • IF(CONDITION IS TRUE,"YES",”NO”) • REPLACE “CONDITION IS TRUE WITH OR FUNCTION” • (OR(G12="YES",H12="YES") • REPLACE “NO” with “SUGGEST AUTO PAY” • IF(OR(G12="YES",H12="YES"),"YES","SUGGEST AUTO PAY")

  6. APPROVED • IF(CONDITION IS TRUE,"YES",”NO”) • REPLACE “CONDITION IS TRUE WITH AND FUNCTION” • AND(I12="YES",J12="YES",K12="YES") • IF(I12="NO","Loan Too Large", “SECOND CONDITION”) • REPLACE SECOND CONDITION WITH ANOTHER IF FUNCTION • IF(I12="NO","Loan Too Large",IF(J12="NO","Score too low","Down too low")

  7. APPROVED FINAL SOLUTION • IF(AND(I12="YES",J12="YES",K12="YES"),"YES",IF(I12="NO","Loan Too Large",IF(J12="NO","Score too low","Down too low")))

More Related