Question
Calculated Expression collection question
I am creating a Project report where I am trying to reference a collection in the view. What I want to happen in this column is to show the assignee of all tasks within the project that have "draft" in the task name. Here is the text mode code I have prepared so far: displayname=Draft Assignee(s) listdelimiter= listmethod=nested(tasks).lists textmode=true type=iterate valueexpression=IF({tasks:name}="Draft",{TASK:assignedTo:name}) valueexpression_Mod=cicontains valueformat=HTML I have also tried this: displayname=Draft Assignee(s) listdelimiter= listmethod=nested(tasks).lists textmode=true type=iterate valueexpression=IF({tasks:name}="Draft",{assignedTo:name}) valueexpression_Mod=cicontains valueformat=HTML I have had some trouble finding documentation on how to properly utilize modifiers in these types of valueexpressions. Anyone able to help figure out how to make this work? Thanks. Cameron Howitt