Is it possible to create a Project report with a column listing all assignees on the project? | Community
Skip to main content
Level 2
February 17, 2023
Solved

Is it possible to create a Project report with a column listing all assignees on the project?

  • February 17, 2023
  • 1 reply
  • 805 views

I am trying to create a project report that shows the full list of assigned people, and do not want this in a task report

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

Hey,

 

Yes, this is possible. Add a column to your report view, switch to text mode and add the following code:

displayname=Project Team listdelimiter=<br> listmethod=nested(projectUsers).lists textmode=true type=iterate valueexpression={user}.{name} valueformat=HTML

 

Best Regards,

Rich. 

 

1 reply

Richard_Le_Community AdvisorAccepted solution
Community Advisor
February 17, 2023

Hey,

 

Yes, this is possible. Add a column to your report view, switch to text mode and add the following code:

displayname=Project Team listdelimiter=<br> listmethod=nested(projectUsers).lists textmode=true type=iterate valueexpression={user}.{name} valueformat=HTML

 

Best Regards,

Rich. 

 

andreadmwAuthor
Level 2
February 17, 2023

That worked! thanks so much!