List predecessor and successor task in an assignment report?
I'm trying to list task predecessor and assignedTo name, and successor task and assignedTo name for a given task in an assignment report. (not a task report)
I can get predecessor names in a task report using the following:
valueexpression=CONCAT({predecessor}.{name})
listdelimiter=<br>
listmethod=nested(predecessors).lists
valueformat=HTML
displayname=Predecessor Name
textmode=true
type=iterate
And predecessor assignee:
displayname=Predecessor Assignee
listdelimiter=<br>
listmethod=nested(predecessors).lists
textmode=true
type=iterate
valueexpression=CONCAT({predecessor}.{assignedTo}.{name})
valueformat=HTML
In an assignment report I would assume I could add "task" before predecessor but that doesn't work.
Like: valueexpression=CONCAT({task}.{predecessor}.{name})
The only other way I can think of is a task form with calc fields for previous tasks and next task and their assignees, then display that on an assignment report.
There has to be an easier way though. Thanks
