BeginnerLogical Functions
Flag reps below target with IF
Use IF to label each rep as meeting or missing their target.
IF
5 min15 points
Returns one value when a test is true and another when it is false.
IF(logical_test, value_if_true, value_if_false)
Logical Functions.
=IF(D2>=1,"Met","Below")
Returns Below
Returns Met when achievement is 100% or more, otherwise Below.
Comparing a percentage-formatted cell against 100 rather than 1. The cell displays 95% but holds 0.95, so >=100 is never true.
Knowing what a function does and being able to write it from memory are different skills. These close the gap.
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
Require two conditions to be true at once.
IF · AND
Combine date arithmetic with a conditional label.
IF · TODAY