ZonoTools

Excel Practice - IF

Instruction

If A2 is at least 85 return "Pass"; otherwise return "Retry".

Formula Syntax

=IF(logical_test, value_if_true, value_if_false)

  • logical_test: Logical condition that evaluates to TRUE or FALSE.
  • value_if_true: Result returned when the condition is TRUE.
  • value_if_false: Result returned when the condition is FALSE.

What it does

Return one value when a condition is TRUE, another when FALSE.

logical-checks.xlsx

ABC
1ScoreAttendance %Approved
29296Yes
37888No
48591Yes
56684No
69093Yes
7Output

Input Formula

Need Help?

Tips

  • Use IF with clean and consistent ranges for predictable results.
  • Validate data types (number, text, date) before applying the formula.
  • Test the formula with a small sample first, then scale it to larger ranges.