You're preparing a headcount report. You need to count all active employees in the Engineering department.
Practice using COUNTIFS to solve a real hr & operations problem. By the end, you’ll know when to reach for it and how to structure the arguments correctly.
You're preparing a headcount report. You need to count all active employees in the Engineering department.
Write a COUNTIFS formula that counts rows where column B (Department) is "Engineering" and column C (Status) is "Active".
COUNTIFS counts cells across multiple ranges that satisfy all of the criteria simultaneously. You list pairs of (range, criterion). Every condition must be true (AND logic) for a row to be counted.
COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2], ...)Try the formula first. Hints cost CP for a reason.