Expand my Community achievements bar.

Don’t miss the Workfront AMA: System Smarts & Strategic Starts! Ask your questions about keeping Workfront running smoothly, planning enhancements, reporting, or adoption, and get practical insights from Adobe experts.
SOLVED

Text Mode - Task Report - Latest update by task

Avatar

Level 2

I'm wondering if anyone has a text mode column for the last update on a task, however, the text mode that I have created shows the last update for the entire project on the report, and I'm just looking to see a single update on an individual task. Can anyone help me out here?

 

displayname=Latest Update
namekey=latest update
shortview=true
valueexpression=CONCAT({project}.{lastNote}.{noteText}," -- ",{project}.{lastNote}.{owner}.{name}," on ",{project}.{lastNote}.{entryDate})
valueformat=HTML

 

1 Accepted Solution

Avatar

Correct answer by
Level 3

Hi MegSVT, 

 

Since you are already on a task report this should work.  You were getting the Project information by having {project} in your expression. 

displayname=Latest Update
namekey=latest update
shortview=true
valueexpression=CONCAT({lastNote}.{noteText}," -- ",{lastNote}.{owner}.{name}," on ",{lastNote}.{entryDate})
valueformat=HTML

 

Hope this helps. 

View solution in original post

2 Replies

Avatar

Correct answer by
Level 3

Hi MegSVT, 

 

Since you are already on a task report this should work.  You were getting the Project information by having {project} in your expression. 

displayname=Latest Update
namekey=latest update
shortview=true
valueexpression=CONCAT({lastNote}.{noteText}," -- ",{lastNote}.{owner}.{name}," on ",{lastNote}.{entryDate})
valueformat=HTML

 

Hope this helps. 

Avatar

Level 2

Good catch! Thank you, this worked!