nested statements excel discovery by sam griffiths

6
Nested Statements Excel Discovery By Sam Griffiths

Upload: godwin-carson

Post on 13-Dec-2015

222 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Nested Statements Excel Discovery By Sam Griffiths

Nested StatementsExcel Discovery By Sam Griffiths

Page 2: Nested Statements Excel Discovery By Sam Griffiths

If Statement

If statement1 - Put in a logic test2 - Value 1 if test passes3 - Value 2 if test fails Basic Logic Tests

Cell=“text”Cell=valueCell>value

Page 3: Nested Statements Excel Discovery By Sam Griffiths

Nested Statements

Functions within functions

Advanced Logic TestsConcatenate()=“text”Sum()=valueCount()>value

Page 4: Nested Statements Excel Discovery By Sam Griffiths

Nested IF Statements

Ifs within Ifs

IF ------ Logic Test ------ Value if True ------ Value if False)

IF -- Logic Test -- Value if True -- Value if False)

Page 5: Nested Statements Excel Discovery By Sam Griffiths

Down the Rabbit Hole

IF ------ Logic Test ------ Value if True ------ Value if False)

IF -- Logic Test -- Value if True -- Value if False)

IF -- Logic Test -- Value if True -- Value if False)

IF -- Logic Test -- Value if True -- Value if False)

Page 6: Nested Statements Excel Discovery By Sam Griffiths

“If” vs “&”

What’s the difference