Expand my Community achievements bar.

SOLVED

Document link within Task Report

Avatar

Level 3

Hi,

 

I'm using the following textmode to bring in nested documents within a project.

listdelimiter=<hr>
listmethod=nested(project).nested(documents).lists
name=Project Docs
stretch=0
type=iterate
valueexpression=CONCAT({name})
valueformat=HTML

 

The stakeholder has requested the name of the doc to be a link, how do I go about including this?

 

Task-Dashboard-Copy.png

 

 

 

 

 

 

 

Thanks

1 Accepted Solution

Avatar

Correct answer by
Level 4

Hello @AndyKent 

Ive had a go at this one. So ive added a custom form to the Document that calculates the URL for you.

Scott_Goodwin_0-1708345461241.png

I then CONCAT that link to the name in the report column

Scott_Goodwin_1-1708345536238.png

it adds the link after the name in the report.

I'm not sure if there is a nicer way to show the name as clickable link. I couldn't get that to work. But this at least allows you to navigate to the document from the report. 

Hope that helps.

View solution in original post

2 Replies

Avatar

Correct answer by
Level 4

Hello @AndyKent 

Ive had a go at this one. So ive added a custom form to the Document that calculates the URL for you.

Scott_Goodwin_0-1708345461241.png

I then CONCAT that link to the name in the report column

Scott_Goodwin_1-1708345536238.png

it adds the link after the name in the report.

I'm not sure if there is a nicer way to show the name as clickable link. I couldn't get that to work. But this at least allows you to navigate to the document from the report. 

Hope that helps.

Avatar

Level 3

Thanks @Scott_Goodwin 

Think I got it using your first screen grab...

listdelimiter=<hr>
listmethod=nested(project).nested(documents).lists
name=Documents
stretch=100
textmode=true
type=iterate
valueexpression=CONCAT({name}, " - ", "http://XXXXX.my.workfront.com/", "document/", {ID}, "/details")
valueformat=HTML

Task-Dashboard-Copy3.png