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.
What does a workload balance chart look like in Metabase?
Read this as a distribution, not a leaderboard: open, overdue, and blocked items per owner, heaviest load first. Four owners holding eight to twelve items while one holds 24 — with nine already overdue — is the imbalance the metric exists to surface, and the cue to rebalance assignments rather than to grade anyone's 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;