Expand my Community achievements bar.

Don’t miss the Workfront AMA: System Smarts & Strategic Starts! Ask your questions about keeping Workfront running smoothly, planning enhancements, reporting, or adoption, and get practical insights from Adobe experts.

Mark Solution

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

SOLVED

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

Avatar

Level 2

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 2

Excellent, exactly what I was looking for.

Thanks!

Daniel