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

Advanced Excel By Ahmed Galal

  • Upload
    algalal

  • View
    1.302

  • Download
    5

Embed Size (px)

DESCRIPTION

 

Citation preview

Page 1: Advanced Excel By Ahmed Galal

Conditional Functions

Conditional Functions

What?What?

Where?Where?

How?How?

Example (1)Example (1)

Example (2)Example (2)

Example (3)Example (3)

Questions...Questions...

Conditional & Logical Functions

AND FALSE

IF

IFERROR

NOTOR

TRUE

X

1

Page 2: Advanced Excel By Ahmed Galal

Conditional Functions

Conditional Functions

What?What?

Where?Where?

How?How?

Example (1)Example (1)

Example (2)Example (2)

Example (3)Example (3)

Questions...Questions...

IF Statement IF (Logical_test, Value_if_true, Value_if_false)

The Logical Functions allowyou to Set various Conditions & have data respond to them

The Condition: Such > Grater Than< Less Than> = Grater Than or equal to< = Less Than or equal to= Equal to< > Not equal to

The result if the logical test is true

The result if the logical test is False

X

2

Page 3: Advanced Excel By Ahmed Galal

Conditional Functions

Conditional Functions

What?What?

Where?Where?

How?How?

Example (1)Example (1)

Example (2)Example (2)

Example (3)Example (3)

Questions...Questions...

Mouse:-Open Excel 2007-Go to formulas Tap-Click the logical button-Select IF

X

3

Page 4: Advanced Excel By Ahmed Galal

Conditional Functions

Conditional Functions

What?What?

Where?Where?

How?How?

Example (1)Example (1)

Example (2)Example (2)

Example (3)Example (3)

Questions...Questions...

-IF True / FalseThis values can be any thing

-Nested IF

-Statistical IF

Secondary Formula inside the main

To perform calculations If a cell isMAX or MIN in the range

4

Page 5: Advanced Excel By Ahmed Galal

Conditional Functions

Conditional Functions

What?What?

Where?Where?

How?How?

Example (1)Example (1)

Example (2)Example (2)

Example (3)Example (3)

Questions...Questions...

X

IF True / False

IF (Logical_test, Value_if_true, Value_if_false)

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

5

Page 6: Advanced Excel By Ahmed Galal

Conditional Functions

Conditional Functions

What?What?

Where?Where?

How?How?

Example (1)Example (1)

Example (2)Example (2)

Example (3)Example (3)

Questions...Questions...

X

Nested IF

=IF(1st_Logical_test,1st_Logical_Value_true, IF(2nd_Logical_test,2nd_Logical_Value_true,False_Value))

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

6

Page 7: Advanced Excel By Ahmed Galal

Conditional Functions

Conditional Functions

What?What?

Where?Where?

How?How?

Example (1)Example (1)

Example (2)Example (2)

Example (3)Example (3)

Questions...Questions...

X

Statistical IF

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

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

7

Page 8: Advanced Excel By Ahmed Galal

Conditional Functions

Conditional Functions

What?What?

Where?Where?

How?How?

Example (1)Example (1)

Example (2)Example (2)

Example (3)Example (3)

Questions...Questions...

X

8

Page 9: Advanced Excel By Ahmed Galal

Where to find? Where to find? X

9

Page 10: Advanced Excel By Ahmed Galal

Where to find? Where to find? X

10

Page 11: Advanced Excel By Ahmed Galal

XExample (1)Example (1)

11

Page 12: Advanced Excel By Ahmed Galal

XExample (2)Example (2)

12

Page 13: Advanced Excel By Ahmed Galal

XExample (3)Example (3)

13