Expand my Community achievements bar.

The next phase for Workfront Community ideas is coming soon. Learn all about it in our blog!
SOLVED

We are looking to report the latest document uploaded to an issue with date/time stamp. Thoughts?

Avatar

Level 4

We currently use text mode to add the "name" of the document attached to the request. We would like to add the date/time to report out when a document or replacement document use uploaded compared to the planned completion date.

This is the current text mode:

displayname=Attached Documents

listdelimiter=<br>

listmethod=nested(documents).lists

textmode=true

type=iterate

valuefield=name

valueformat=HTML

Suggestions? Thank you in advance.

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi Dawnmarie,

If i've understood your post correctly, you would like your report to show the name of documents added to an issue and the date it was uploaded. If that's the case, the below text mode should do it:

displayname=Attached Documents

listdelimiter=<br>

listmethod=nested(documents).lists

textmode=true

type=iterate

valueexpression=CONCAT({name}," - ",{currentVersion}.{entryDate})

valueformat=HTML

Hope that helps!

Best Regards,

Rich.

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi Dawnmarie,

If i've understood your post correctly, you would like your report to show the name of documents added to an issue and the date it was uploaded. If that's the case, the below text mode should do it:

displayname=Attached Documents

listdelimiter=<br>

listmethod=nested(documents).lists

textmode=true

type=iterate

valueexpression=CONCAT({name}," - ",{currentVersion}.{entryDate})

valueformat=HTML

Hope that helps!

Best Regards,

Rich.

Avatar

Level 4

Thank you! This worked like a charm. Sorry for the delayed reply. =D