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
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
@sydney_peterson Just checking in! Were you able to get this resolved? If you found your own solution, sharing the details would be a big help to others who might face the same issue later on. And if one of the replies here helped, whether it fully solved the problem or simply pointed you in the right direction, marking it as accepted makes it much easier for future readers to find. Thanks again for helping close the loop and contributing to the community!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies