Expand my Community achievements bar.

The Community Ideas review for H1 2025 is out now, see which ideas our Product team prioritized and let us know your thoughts.
SOLVED

Text Mode Project Report, List Issues

Avatar

Level 2

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).

Topics

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

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

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

 




View solution in original post

3 Replies

Avatar

Correct answer by
Community Advisor

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

 




Avatar

Community Advisor

Avatar

Level 2

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:

Screenshot 2025-07-03 at 3.15.29 PM.png