Table Relationship (% in Piechart)
I have 3 tables:
? Projects
? Tasks
? Subtasks
Each project has multiple tasks
Each task has multiple subtasks
Each project has 3 phases:
? Planning
? Development
? Implementation
Projects, Tasks, and Subtasks have the following 6 statuses:
? Not Started
? In Progress
? Hold
? Risk
? Completed
? Canceled
I wanted to create a piechart (showing % of the project in not started, in progress, hold, risk, completed, canceled) calculated based on the % of subtasks and % of tasks status against each project phase
E.g.,
? Subtasks table: I want a % calculation based on the status of each subtasks assigned to a project
? Tasks table: I want a % calculation based on the average pulled from subtasks status assigned to a project
? Projects table: I want a % of calculation based on the average pulled from tasks assigned to a project
Can someone please help?