IntermediateLogical Functions
Flag accounts for review with AND and OR
Combine two logical tests so one condition can override the other.
AND · OR · IF
9 min30 points
The warehouse wants a single column telling pickers which orders leave the normal flow. An order needs special handling if it is a rush job or if it contains fragile stock — either one on its own is enough.
| Row number | A | B | C | D | E |
|---|---|---|---|---|---|
| 1 | Order | Service | Fragile | Handling | |
| 2 | SO-5201 | Rush | No | ||
| 3 | SO-5202 | Standard | No | ||
| 4 | SO-5203 | Standard | Yes | ||
| 5 | SO-5204 | Rush | Yes | ||
| 6 | SO-5205 | Standard | No | ||
| 7 | SO-5206 | Standard | Yes | ||
| 8 |
Require two conditions to be true at once.
IF · AND
Use IF to label each rep as meeting or missing their target.
IF
Return one of three labels depending on where a value falls.
IF