Text Mode Project Report, List Issues | Community
Skip to main content
Mikaela-Newell
Level 3
June 20, 2025
Solved

Text Mode Project Report, List Issues

  • June 20, 2025
  • 1 reply
  • 486 views

Hi all!

Trying to add a list of all issues in a project, onto a project report. What I currently have is:

displayname=Issues listdelimiter= listmethod=nested(opTask).lists type=iterate valueexpression=CONCAT("• ",{opTask}.{name}) valueformat=HTML

 and in the place of "opTask" I have also tried opTasks, resolvable, resolvables...

 

The idea is to have a bulleted list (ideally with each issue name hyperlinked to the issue in question).

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by KellieGardner

Remove the "opTask" from your expression. and change it to issues.

 

displayname=Issues listdelimiter= listmethod=nested(issues).lists type=iterate valueexpression=CONCAT("• ",{name}) valueformat=HTML

 

1 reply

KellieGardner
Community Advisor and Adobe Champion
KellieGardnerCommunity Advisor and Adobe ChampionAccepted solution
Community Advisor and Adobe Champion
June 20, 2025

Remove the "opTask" from your expression. and change it to issues.

 

displayname=Issues listdelimiter= listmethod=nested(issues).lists type=iterate valueexpression=CONCAT("• ",{name}) valueformat=HTML

 

KellieGardner
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
June 20, 2025
Mikaela-Newell
Level 3
July 3, 2025

Thank you Kellie!! This fixed it!

The only other thing is I wanted the issue names hyperlinked to the issues, but for anyone who finds this thread in the future, it seems that's not possible currently.

My final code is:

column.10.displayname=Issues column.10.sharecol=true column.10.textmode=true column.10.value=<strong>Total Issues: </strong> column.10.valueformat=HTML column.11.sharecol=true column.11.textmode=true column.11.valuefield=totalOpTaskCount column.11.valueformat=HTML column.12.sharecol=true column.12.textmode=true column.12.value=<br> column.12.valueformat=HTML column.13.listdelimiter=<div> column.13.listmethod=nested(issues).lists column.13.textmode=true column.13.type=iterate column.13.valueexpression=CONCAT("• ",{name}) column.13.valueformat=HTML

 And it produces something like this: