Add Link to Issue in Custom Field Value for Issue Report | Community
Skip to main content
Level 2
April 28, 2025
Solved

Add Link to Issue in Custom Field Value for Issue Report

  • April 28, 2025
  • 1 reply
  • 274 views

Hello, looking for assistance on an issue report.

 

We have a custom issue field SGWS | Short Product Name. Is there a text mode method where I can display the value of that field, but it's also a link to the issue? 

Best answer by RowvillBh1

Hi @beckerd ,

 

You might have to create a calculated field on an existing (or new) custom form on the issue level. Let's say you call it "Issue Link". 

 

Formula would be something like : CONCAT("https://experience.adobe.com/#/<yourcompanyname>/workfront/issue/",{ID})

 

Once this field is added to all your issues. Then add a column in your report and in text mode add the following code - 

 

displayname=SGWS | Short Product Name
link.url=Issue Link
linkedname=html(Issue Link)
valueexpression=IF(ISBLANK({DE:Issue Link}),"",{DE:SGWS | Short Product Name})
valueformat=HTML

 

Hope this works. 

1 reply

RowvillBh1
RowvillBh1Accepted solution
Level 5
April 28, 2025

Hi @beckerd ,

 

You might have to create a calculated field on an existing (or new) custom form on the issue level. Let's say you call it "Issue Link". 

 

Formula would be something like : CONCAT("https://experience.adobe.com/#/<yourcompanyname>/workfront/issue/",{ID})

 

Once this field is added to all your issues. Then add a column in your report and in text mode add the following code - 

 

displayname=SGWS | Short Product Name
link.url=Issue Link
linkedname=html(Issue Link)
valueexpression=IF(ISBLANK({DE:Issue Link}),"",{DE:SGWS | Short Product Name})
valueformat=HTML

 

Hope this works.