Expand my Community achievements bar.

The next phase for Workfront Community ideas is coming soon. Learn all about it in our blog!
SOLVED

Is there a way to display the assigned to name and role in a single column within a template view?

Avatar

Level 1

Looking for a way to display a name and role in a custom template view column.

We have certain tasks on our projects that are assigned to multiple people so we don't have a true task owner, so the Task Assigned to doesn't work great.

If possible I am looking for a way to display: name: role, name: role, name: role, etc... in a list format similar to how the Task Assignments option works.

Topics

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

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi Daniel,

Adding a text mode column to your view with the following code should do it

displayname=Assignment and Role

listdelimiter=<br>

listmethod=nested(assignments).lists

textmode=true

type=iterate

valueexpression=CONCAT({assignedTo}.{name}," - ",{role}.{name})

valueformat=HTML

Best Regards,

Rich.

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi Daniel,

Adding a text mode column to your view with the following code should do it

displayname=Assignment and Role

listdelimiter=<br>

listmethod=nested(assignments).lists

textmode=true

type=iterate

valueexpression=CONCAT({assignedTo}.{name}," - ",{role}.{name})

valueformat=HTML

Best Regards,

Rich.

Avatar

Level 1

Excellent, exactly what I was looking for.

Thanks!

Daniel