Skip to content
Report · Administration

Employee headcount by department

Active employees per department, with login access, sales reps and hires in the last twelve months.

  • headcount
  • licences
  • hr
Sample preview, fictional dataYour own figures appear after import.

01

About this report

Counts from the employee records. For each department, the number of active employees, how many have NetSuite login access, how many are sales reps, and how many were hired in the last twelve months. Employees with no department show as (no department).

Compare With login access against the organisation chart when you review licences, and use Hired, last 12 months to see which departments are growing.

02

Sample preview

Fictional figures in the shape you will see. Yours come from your account.

DepartmentEmployeesWith login accessSales repsHired, last 12 months
Engineering421807
Sales and Marketing1917124
Operations27903
Administration8801
(no department)2100

03

The SuiteQL

This is the query each report runs. Read it, copy it, or change it after import.

Employee headcount by department
SELECT NVL(BUILTIN.DF(e.department), '(no department)') AS department,
       COUNT(*) AS employees,
       SUM(CASE WHEN e.giveaccess = 'T' THEN 1 ELSE 0 END) AS with_access,
       SUM(CASE WHEN e.issalesrep = 'T' THEN 1 ELSE 0 END) AS sales_reps,
       SUM(CASE WHEN e.hiredate > ADD_MONTHS(TRUNC(SYSDATE), -12) THEN 1 ELSE 0 END) AS hired_12_months
  FROM employee e
 WHERE e.isinactive = 'F'
 GROUP BY NVL(BUILTIN.DF(e.department), '(no department)')
 ORDER BY employees DESC

ReportAdministration

Employee headcount by department

Screenshot of the Employee headcount by department report in HiScale Advanced Reports, filled with fictional sample data
Sample preview, fictional dataOpen image full size (opens in a new tab)