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
Views
Replies
Total Likes
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
Views
Replies
Total Likes
Yeah, seems like that's the case. I tried your text mode but unfortunately, the results are blank. I appreciate the reply though!
Views
Replies
Total Likes
If you are using a Task report, try changing
listmethod=nested(project.assignments).lists
to
listmethod=nested(assignments).lists
no luck!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies