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

Displaying Hyperlinks in a Report

Avatar

Level 4

Hello,

 

So I know this can be done using a calculated custom field, but I am trying to do this in the report itself without having to add a calculated field:

 

displayname=External URL
valueexpression=IF(ISBLANK({DE:Some ID}),"",CONCAT("https://www.google.com?id=",{DE:Some ID}))
valueformat=HTML

This does work functionally and shows a link to the external page, but it shows the entire URL. I am trying to add a Hyperlink here instead of showing the full URL.  

 

I did try to set up an HTML Tag using the following:
Column1: a href="

Column2:Above URL

Column 3">link text/a >

 

I also used sharecol to combine all the columns into one, but I had no luck! Wanted to see if anyone had any suggestions. Thanks!

1 Accepted Solution

Avatar

Correct answer by
Level 5

Hi @SuryaLakhani ,

 

Maybe try this. Add the text you want to show as the hyper link in the link.url line- 

 

displayname=External URL

link.url=customDataLabelsAsString(Hyperlink text)

textmode=true

valueexpression=

IF(ISBLANK({DE:Some ID}),"",CONCAT("https://www.google.com?id=",{DE:Some ID}))

valueformat=HTML

 

Hope this helps

View solution in original post

1 Reply

Avatar

Correct answer by
Level 5

Hi @SuryaLakhani ,

 

Maybe try this. Add the text you want to show as the hyper link in the link.url line- 

 

displayname=External URL

link.url=customDataLabelsAsString(Hyperlink text)

textmode=true

valueexpression=

IF(ISBLANK({DE:Some ID}),"",CONCAT("https://www.google.com?id=",{DE:Some ID}))

valueformat=HTML

 

Hope this helps