What is workload balance, and how do you measure it in Metabase?
Workload balance shows how open work is distributed across owners, teams, projects, and statuses. It helps managers spot capacity and assignment issues without pretending raw task count equals productivity.
Definition
Workload balance is a distribution view, usually open items by owner or team, enriched with overdue and blocked counts.
Data needed
- Owner or assignee
- Status and status group
- Due date and completed date
- Team, project, and work type
SQL pattern
SELECT
owner_name,
COUNT(*) FILTER (WHERE completed_at IS NULL) AS open_items,
COUNT(*) FILTER (WHERE completed_at IS NULL AND due_date < CURRENT_DATE) AS overdue_items,
COUNT(*) FILTER (WHERE completed_at IS NULL AND status_group = 'blocked') AS blocked_items
FROM work_items
WHERE archived_at IS NULL
AND canceled_at IS NULL
GROUP BY 1
ORDER BY open_items DESC;