Using the if function simple

6
Using the IF Function

Transcript of Using the if function simple

Page 1: Using the if function simple

Using the IF Function

Page 2: Using the if function simple

The IF function can be quite useful in a spreadsheet. It is a

Logical function and can be used to choose one of two values to put into a cell.

Page 3: Using the if function simple

Here are some different Conditional Operators we could use:

> More than< Less Than

>= Greater than Or Equal To<= Less than Or Equal To

<> Not Equal To

Page 4: Using the if function simple

If my score is more than 80 I passed

PASS ( I passed)

FAIL (I failed)

IF(cell reference >80,”PASS”,”FAIL”

Click on me to try out the

function

Page 5: Using the if function simple

If I have £1000 or more in my account

YES (I can go on holiday)

NO (I can’t)

IF(cell reference >=1000,”YES”,”NO”

Page 6: Using the if function simple

If there are less than 100 in stock

RE-ORDER (i need more stock)

NO (There is enough stock left)

IF(cell reference <100,”RE-ORDER”,”NO”