Expand my Community achievements bar.

Text mode for assignments not just assigned to ID

Avatar

Level 3

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
4 Replies

Avatar

Level 7
Level 7

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

 

Avatar

Level 3

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

Avatar

Level 4

If you are using a Task report, try changing

listmethod=nested(project.assignments).lists

to

listmethod=nested(assignments).lists

Avatar

Level 3

no luck!