HI, CR XI and SQL database.
I have two tables Projects and Tasks joined by projectid. Each project can have multiple tasks.
I have a group by Project and tasks in the details.
Each task has a task type, start date, end date, status. The task type may be one of these valuese: Plan, Design, Develop X, Develop Y, Develop Z, Deliver, Test.
My requirement is to have this visible all on the same line as the Project Name and related fields... where Plan, Design, Deliver and Test are all a series of three columns and Develop is three columns but multiple rows, if listed.
I am able to do the most of it by creating a group by project and formula for my various task types for example (@Plan_Start)//
If task.type startswith "Plan" then task.startdate
then create a summary of mininum @plan_start and place this in my group header.
I am able to bring the correct value into the detail for @Plan_Stage by the same formual If task.type startswith "Plan" then task.stage but how can i bring this value into the group header.
for Develop, because there can be multiple values, I am leaving them in the details and forcing my group header to 'underlay' and conditionally suppressing the details if not(task.type startswith "Develop")
any suggestions would be great.
I have two tables Projects and Tasks joined by projectid. Each project can have multiple tasks.
I have a group by Project and tasks in the details.
Each task has a task type, start date, end date, status. The task type may be one of these valuese: Plan, Design, Develop X, Develop Y, Develop Z, Deliver, Test.
My requirement is to have this visible all on the same line as the Project Name and related fields... where Plan, Design, Deliver and Test are all a series of three columns and Develop is three columns but multiple rows, if listed.
I am able to do the most of it by creating a group by project and formula for my various task types for example (@Plan_Start)//
If task.type startswith "Plan" then task.startdate
then create a summary of mininum @plan_start and place this in my group header.
I am able to bring the correct value into the detail for @Plan_Stage by the same formual If task.type startswith "Plan" then task.stage but how can i bring this value into the group header.
for Develop, because there can be multiple values, I am leaving them in the details and forcing my group header to 'underlay' and conditionally suppressing the details if not(task.type startswith "Develop")
any suggestions would be great.