Can you add a list of all people on a project into a Task Report? | Community
Skip to main content
Level 5
February 8, 2022
Question

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

  • February 8, 2022
  • 1 reply
  • 760 views

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

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

February 8, 2022

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

Level 5
February 9, 2022

This worked like a charm! Thanks so much!