Hi,
I have an expression in a task report which is pulling a list of all tasks on a Project.
listdelimiter=<hr>
listmethod=nested(project).nested(tasks).lists
name=All project tasks
stretch=100
textmode=true
type=iterate
valueexpression=CONCAT({name}, " - ", "http://xxx.my.workfront.com/", "task/", {ID},"/", "overview")
valueformat=HTML
Works great but the stakeholder has asked if the name of the Task can simply be the link:
Column on the left is the current format, but the column on the right shows what I want to be the link. As below:
listdelimiter=<hr>
listmethod=nested(project).nested(tasks).lists
name=All project tasks
stretch=0
textmode=true
type=iterate
valueexpression=REPLACE({name}, {ID}, {ID})
valueformat=HTML
How do I pull the {name} through as the link?
Thanks