Expand my Community achievements bar.

Can you add a list of all people on a project into a Task Report?

Avatar

Level 5

Use case: I am building a Task Report based on individual assignment. The ask is to show key people working on the project in this report so they can easily see who to contact if questions arise without going into the "People" section of the project. I can do this on a Project report, but the Task report can't "see" this information from what I can tell. Any workarounds/solutions would be appreciated!

This is the code that works on the Project report but not Task one. Thanks!

description=Team Users

displayname=Project Team

listdelimiter=<div>

listmethod=nested(projectUsers).lists

textmode=true

type=iterate

valueexpression=CONCAT("* ",{user}.{name})

valueformat=HTML

Topics

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

2 Replies

Avatar

Level 1

Hi @Ryan McGee‚ (sorry I accidentally deleted the wrong comment) -- what you have is nearly there. Just change the part in bold below, which is where you're telling the task object report to look to the project object to fetch the projectUsers attribute :)

description=Team Users

displayname=Project Team

listdelimiter=<div>

listmethod=nested(project.projectUsers).lists

textmode=true

type=iterate

valueexpression=CONCAT("* ",{user}.{name})

valueformat=HTML