Is there a way in a task report to include a specific task and planned completion date?
In my example I have a report for all Late task. For the Late task I can pull in the Next task, see below. But I’d also like to pull in our Delivery task name and planned completion date for the project. Any thoughts on how to get this to work?
displayname=Next Task
listdelimiter=
listmethod=nested(successors).lists
textmode=true
type=iterate
valueexpression=CONCAT({successor}.{plannedCompletionDate},' - ',{successor}.{name})
valueformat=HTML
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
sljonas, I think the below will get you what you need if I understood the question correct. In example below we use Communication Deployed - EM for our task name for email deliverable, change it to your task name
displayname=Delivery Task
listdelimiter=
listmethod=nested(successors).lists
textmode=true
type=iterate
valueexpression=IF({successor}.{name}="Communication Deployed - EM", CONCAT({successor}.{plannedCompletionDate},' - ',{successor}.{name}))
valueformat=HTML
sljonas, I think the below will get you what you need if I understood the question correct. In example below we use Communication Deployed - EM for our task name for email deliverable, change it to your task name
displayname=Delivery Task
listdelimiter=
listmethod=nested(successors).lists
textmode=true
type=iterate
valueexpression=IF({successor}.{name}="Communication Deployed - EM", CONCAT({successor}.{plannedCompletionDate},' - ',{successor}.{name}))
valueformat=HTML
This only works if the next task (the successor) is Delivery. My Delivery task can be two or more downstream so its not showing up.
In the example my delivery is task 31. So the successors for 13 is 14 and 17 is 18. It wont show task 31. Hope this makes sense.
Views
Replies
Total Likes
sljonas, oh, got it. If you just want to show the task info try the below with the name of your task
displayname=Delivery Task
textmode=true
valueexpression=IF({name}='Communication Deployed - EM', CONCAT({plannedCompletionDate},' - ',{name}))
valueformat=HTML
Views
Replies
Total Likes
It seems to work but not on all. It may be due to my filters for the report. I'll keep testing. Thanks!
Filtered By:
Views
Replies
Total Likes
Views
Replies
Total Likes
Textmode isn't always straight-forward, this may get you what you need:
displayname=Delivery Task
textmode=true
valueexpression=IF({name}='Communication Deployed - EM', CONCAT({plannedCompletionDate},' - ',{name}),IF({name}='Communication Deployed',CONCAT({plannedCompletionDate},' - ',{name})))
valueformat=HTML
To my knowledge, I don't believe you can get information in a task report on a different task unless it's somehow tied to that task (collections). This is why successors and predecessors will get you information, because they are tied to the task.
I could be wrong here but the only way I've been able to accomplish this is with a project report and adding columns for collection text mode code to pull tasks into those columns.
Views
Likes
Replies