I am trying to use a custom task field to create a custom project field. Is there a way to do this?
Let me be more specific: I have created a number of custom task fields to track tasks. The basic approach is to flag a task a task if they meet a specific requirement. For example. I have a custom task that is "Task In Progress":
IIf([Milestone], 0, IIf([% Complete] > 0 And [% Complete] < 100, 1, 0))
Then in rollup I use "Sum".
What this does is count the number of tasks that are in progress. I then repeat this for other items like total tasks, tasks complete, etc.
I then want to create a Project Center View that shows for each project the number of tasks in progress (as well as total tasks and tasks completed). My understanding is that to do that, I need to create a Enterprise Custom field at the project level - but then I need to access the task level custom field - and I cannot find a way to do this. In Project Center view, only Project level custom fields are available, not task level custom fields.
Basically. I want a Project Center display that shows for each project:
Projec Name, Start, Finish, Total Tasks, Tasks Completed, Tasks in Progress, Tasks Late.
This seems harder than it should be - which probably means I am tackling this from the wrong direction.
Thanks in advance,
Simon