COUNTIF / Construction Manager

Count Safety Incidents by Site

I need to count the number of safety reports logged for 'Site A' to monitor compliance.

formula.xlsx
=COUNTIF(B2:B7,"Site A")

How it works: The COUNTIF function counts cells within a specified range that meet a given criterion. In this scenario, it counts every row in the 'Site' column (B2:B7) where the site name is exactly 'Site A', providing a quick tally of incidents for that specific location. This helps in monitoring site-specific safety performance.

Data Setup

"Report ID" "Site" "Incident Type" "Date"
"1001" "Site A" "Fall" "2023-01-15"
"1002" "Site B" "Equipment Malfunction" "2023-01-16"
"1003" "Site A" "Near Miss" "2023-01-17"
"1004" "Site C" "Injury" "2023-01-18"
"1005" "Site A" "Fall" "2023-01-19"
"1006" "Site B" "Near Miss" "2023-01-20"

Step-by-Step Guide

1

Open your safety incident log in Excel.

2

Identify the column containing the 'Site' information (e.g., Column B).

3

In an empty cell where you want the result, type the formula: `=COUNTIF(B2:B7,"Site A")`

4

Press Enter to see the total count of incidents specifically for 'Site A'.

Explore More