SlideShare a Scribd company logo
1 of 13
X
          Conditional
           Functions


      ?What


      ?Where


       ?How
                          Conditional &
    (Example (1
                        Logical Functions
                        AND    FALSE
    (Example (2                      IFERROR
                                 OR
    (Example (3             IF      NOT
    ...Questions                TRUE
                                               1
X
    Conditional
     Functions


            ?What


      ?Where
                    The Logical Functions allow
                    you to Set various Conditions &
       ?How
                    have data respond to them
    (Example (1
                                    IF Statement
                    IF (Logical_test, Value_if_true, Value_if_false)
    (Example (2
                     The Condition: Such
                     > Grater Than
                                                      The result if the
                     < Less Than                      logical test is False
    (Example (3      > = Grater Than or equal to
                     < = Less Than or equal to
                                                   The result if the
                     = Equal to
                     < > Not equal to              logical test is true
    ...Questions
                                                                              2
X
    Conditional
     Functions


      ?What

                    :Mouse
           ?Where
                     -Open Excel 2007
       ?How          -Go to formulas Tap
                     -Click the logical button
    (Example (1      -Select IF

    (Example (2


    (Example (3


    ...Questions
                                                 3
Conditional
 Functions


  ?What


  ?Where
               IF True / False -
        ?How
                This values can be any thing

(Example (1
               Nested IF -
                Secondary Formula inside the main
(Example (2
               Statistical IF -
(Example (3     To perform calculations If a cell is
                MAX or MIN in the range
...Questions
                                                       4
X
    Conditional
     Functions


      ?What


      ?Where           IF True / False
       ?How            IF (Logical_test, Value_if_true, Value_if_false)

                                    IF (B2>=C2, B2*2% , 0)
         (Example (1


    (Example (2


    (Example (3


    ...Questions
                                                                          5
X
    Conditional
     Functions


      ?What


      ?Where                Nested IF
                              =IF(1st_Logical_test,1st_Logical_Value_true,
       ?How            IF(2nd_Logical_test,2nd_Logical_Value_true,False_Value))


    (Example (1          =IF(B2>C2,"Good",IF(B2=C2,"Avarage","Poor"))


         (Example (2


    (Example (3


    ...Questions
                                                                                  6
X
    Conditional
     Functions


      ?What

                       Statistical IF
      ?Where

                       IF (Relative Cell = MAX(Absolute Range),
       ?How                  Value_if_true, Value_if_false)

    (Example (1        =IF(C2=MAX($C$2:$C$4),"Top Performer","-")


    (Example (2


         (Example (3


    ...Questions
                                                                    7
X
    Conditional
     Functions


      ?What


     ?Where


      ?How


    (Example (1


    (Example (2


    (Example (3


         ...Questions
                        8
X
    ? Where to find




                  9
X
    ? Where to find




                      10
X
    (Example (1




                  11
X
    (Example (2




                  12
X
    (Example (3




                  13

More Related Content

Similar to Advanced Excel By Ahmed Galal

An introduction to Prolog language slide
An introduction to Prolog language slideAn introduction to Prolog language slide
An introduction to Prolog language slide2021uam4641
 
Introduction to random variables
Introduction to random variablesIntroduction to random variables
Introduction to random variablesHadley Wickham
 
Intepretable Machine Learning
Intepretable Machine LearningIntepretable Machine Learning
Intepretable Machine LearningAnkit Tewari
 
Chaptfffffuuer05.PPT
Chaptfffffuuer05.PPTChaptfffffuuer05.PPT
Chaptfffffuuer05.PPTsdvdsvsdvsvds
 
Deep Learning: Introduction & Chapter 5 Machine Learning Basics
Deep Learning: Introduction & Chapter 5 Machine Learning BasicsDeep Learning: Introduction & Chapter 5 Machine Learning Basics
Deep Learning: Introduction & Chapter 5 Machine Learning BasicsJason Tsai
 
Demystifying the Bias-Variance Tradeoff
Demystifying the Bias-Variance TradeoffDemystifying the Bias-Variance Tradeoff
Demystifying the Bias-Variance TradeoffAshwin Rao
 
Supervised learning: Types of Machine Learning
Supervised learning: Types of Machine LearningSupervised learning: Types of Machine Learning
Supervised learning: Types of Machine LearningLibya Thomas
 
Artificial intelligence cs607 handouts lecture 11 - 45
Artificial intelligence   cs607 handouts lecture 11 - 45Artificial intelligence   cs607 handouts lecture 11 - 45
Artificial intelligence cs607 handouts lecture 11 - 45Sattar kayani
 
An Introduction to boosting
An Introduction to boostingAn Introduction to boosting
An Introduction to boostingbutest
 
Big Data Analysis
Big Data AnalysisBig Data Analysis
Big Data AnalysisNBER
 

Similar to Advanced Excel By Ahmed Galal (13)

An introduction to Prolog language slide
An introduction to Prolog language slideAn introduction to Prolog language slide
An introduction to Prolog language slide
 
Introduction to random variables
Introduction to random variablesIntroduction to random variables
Introduction to random variables
 
ppt
pptppt
ppt
 
ppt
pptppt
ppt
 
Intepretable Machine Learning
Intepretable Machine LearningIntepretable Machine Learning
Intepretable Machine Learning
 
Chaptfffffuuer05.PPT
Chaptfffffuuer05.PPTChaptfffffuuer05.PPT
Chaptfffffuuer05.PPT
 
Deep Learning: Introduction & Chapter 5 Machine Learning Basics
Deep Learning: Introduction & Chapter 5 Machine Learning BasicsDeep Learning: Introduction & Chapter 5 Machine Learning Basics
Deep Learning: Introduction & Chapter 5 Machine Learning Basics
 
Demystifying the Bias-Variance Tradeoff
Demystifying the Bias-Variance TradeoffDemystifying the Bias-Variance Tradeoff
Demystifying the Bias-Variance Tradeoff
 
Supervised learning: Types of Machine Learning
Supervised learning: Types of Machine LearningSupervised learning: Types of Machine Learning
Supervised learning: Types of Machine Learning
 
Artificial intelligence cs607 handouts lecture 11 - 45
Artificial intelligence   cs607 handouts lecture 11 - 45Artificial intelligence   cs607 handouts lecture 11 - 45
Artificial intelligence cs607 handouts lecture 11 - 45
 
Into to prob_prog_hari (2)
Into to prob_prog_hari (2)Into to prob_prog_hari (2)
Into to prob_prog_hari (2)
 
An Introduction to boosting
An Introduction to boostingAn Introduction to boosting
An Introduction to boosting
 
Big Data Analysis
Big Data AnalysisBig Data Analysis
Big Data Analysis
 

Advanced Excel By Ahmed Galal

  • 1. X Conditional Functions ?What ?Where ?How Conditional & (Example (1 Logical Functions AND FALSE (Example (2 IFERROR OR (Example (3 IF NOT ...Questions TRUE 1
  • 2. X Conditional Functions ?What ?Where The Logical Functions allow you to Set various Conditions & ?How have data respond to them (Example (1 IF Statement IF (Logical_test, Value_if_true, Value_if_false) (Example (2 The Condition: Such > Grater Than The result if the < Less Than logical test is False (Example (3 > = Grater Than or equal to < = Less Than or equal to The result if the = Equal to < > Not equal to logical test is true ...Questions 2
  • 3. X Conditional Functions ?What :Mouse ?Where -Open Excel 2007 ?How -Go to formulas Tap -Click the logical button (Example (1 -Select IF (Example (2 (Example (3 ...Questions 3
  • 4. Conditional Functions ?What ?Where IF True / False - ?How This values can be any thing (Example (1 Nested IF - Secondary Formula inside the main (Example (2 Statistical IF - (Example (3 To perform calculations If a cell is MAX or MIN in the range ...Questions 4
  • 5. X Conditional Functions ?What ?Where IF True / False ?How IF (Logical_test, Value_if_true, Value_if_false) IF (B2>=C2, B2*2% , 0) (Example (1 (Example (2 (Example (3 ...Questions 5
  • 6. X Conditional Functions ?What ?Where Nested IF =IF(1st_Logical_test,1st_Logical_Value_true, ?How IF(2nd_Logical_test,2nd_Logical_Value_true,False_Value)) (Example (1 =IF(B2>C2,"Good",IF(B2=C2,"Avarage","Poor")) (Example (2 (Example (3 ...Questions 6
  • 7. X Conditional Functions ?What Statistical IF ?Where IF (Relative Cell = MAX(Absolute Range), ?How Value_if_true, Value_if_false) (Example (1 =IF(C2=MAX($C$2:$C$4),"Top Performer","-") (Example (2 (Example (3 ...Questions 7
  • 8. X Conditional Functions ?What ?Where ?How (Example (1 (Example (2 (Example (3 ...Questions 8
  • 9. X ? Where to find 9
  • 10. X ? Where to find 10
  • 11. X (Example (1 11
  • 12. X (Example (2 12
  • 13. X (Example (3 13