Text mode for assignments not just assigned to ID | Community
Skip to main content
sydney_peterson
Level 3
September 23, 2025
Question

Text mode for assignments not just assigned to ID

  • September 23, 2025
  • 1 reply
  • 446 views

Hi! 

I know the text mode when I want to display another task assignment on a task report that's not already filtering for that specific task, but what about showing the full assignment list when more than one person is assigned since its a string? 

So basically, I'm looking for the correct text mode to get all assignments instead of just the assigned to name of the primary assignee. 

displayname=Signatories
listdelimiter=<div>
listmethod=nested(project.tasks).lists
type=iterate
valueexpression=IF({name}='Confirm Signatories',{assignedTo}.{name})
valueformat=HTML

1 reply

-JC
Level 6
September 23, 2025

Hopefully someone else can confirm this, but I am fairly certain this is not possible - I think you can only pull in the Primary Assignment for a Tasks list.

On the flip side, you could likely shift the thinking on this and use an Assignment list instead. Hopefully the below works for you.

 

displayname=Signatories listdelimiter=<div> listmethod=nested(project.assignments).lists type=iterate valueexpression=IF({task}.{name}="Confirm Signatories",CONCAT({assignedTo}.{name})) valueformat=HTML

 

sydney_peterson
Level 3
September 23, 2025

Yeah, seems like that's the case. I tried your text mode but unfortunately, the results are blank. I appreciate the reply though! 

Level 3
September 23, 2025

If you are using a Task report, try changing

listmethod=nested(project.assignments).lists

to

listmethod=nested(assignments).lists