Expand my Community achievements bar.

The Community Ideas review for H1 2025 is out now, see which ideas our Product team prioritized and let us know your thoughts.
SOLVED

Anyone know if there is a way to pull Task Specific info into a Project Report?

Avatar

Level 5

Hi all - 

I want to know if there is a way to pull task info into a Project report? For instance, if I need a column on a Project report to show the Due Date of a specific Task, if there a way to pull that into a column? 

Thanks!

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

You can do this through a combination of collections and value expressions.

 

Reference collections in a report | Adobe Workfront

 

standard collection code:

valueformat=HTML
textmode=true
type=iterate
listdelimiter=<p>
displayname=Column Name
listmethod=nested(collection object name).lists
valuefield=collection object field

 

 

Combine collections and value expressions. Below is an example of how you could get your task data to populate into a column

 

valueformat=HTML
textmode=true
type=iterate
listdelimiter=<p>
displayname=Task XYZ Due Date
listmethod=nested(tasks).lists
valueexpression=IF({name}=xyz,{plannedCompletionDate})

 




View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

You can do this through a combination of collections and value expressions.

 

Reference collections in a report | Adobe Workfront

 

standard collection code:

valueformat=HTML
textmode=true
type=iterate
listdelimiter=<p>
displayname=Column Name
listmethod=nested(collection object name).lists
valuefield=collection object field

 

 

Combine collections and value expressions. Below is an example of how you could get your task data to populate into a column

 

valueformat=HTML
textmode=true
type=iterate
listdelimiter=<p>
displayname=Task XYZ Due Date
listmethod=nested(tasks).lists
valueexpression=IF({name}=xyz,{plannedCompletionDate})