Build a Department Points Roll-Up System in Asana
What I’m trying to solve
I manage projects in Asana where each parent task contains subtasks organized by department: Scripting, Production, Editing, Design, and Casting. Each of those department subtasks contains its own child subtasks, and each child subtask has a numeric custom field called “Points” that represents estimated or actual time/effort.
I need a system that:
-
Sums the Points across all child subtasks within each department
-
Surfaces those department totals at the parent task level so I can report on how much effort each department contributes to a given task
Task Structure (for reference)
Parent Task
├── Scripting (subtask / department container)
│ ├── Write outline — Points: 3
│ ├── Draft script — Points: 5
├── Production (subtask / department container)
│ ├── Location scout — Points: 4
├── Editing (subtask / department container)
│ ├── Rough cut — Points: 6
│ ├── Color grade — Points: 3
├── Design (subtask / department container)
│ ├── Thumbnail — Points: 2
└── Casting (subtask / department container)
├── Talent outreach — Points: 2
├── Callbacks — Points: 1
Preferred approach
Build this natively in Asana as much as possible. Please advise on:
- Whether Asana’s Rules, custom fields, or formulas can achieve any part of this automatically
Output I want to see at the task level
| Department | Points |
|---|---|
| Scripting | 8 |
| Production | 4 |
| Editing | 9 |
| Design | 2 |
| Casting | 3 |
| Total | 26 |