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.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

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

Avatar

Level 6

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

Avatar

Level 6

This worked like a charm! Thanks so much!