Project report listing issues by task name
Hi! We're building a 'project finder' report to allow employees to search by any known value in order to get more info about the projects associated with those values. We have deliverables identified by barcodes, but those issues are associated with a templated task, and I'd like to have a column that lists all issues on that task (not the entire project) to allow for search...i.e. someone knows the barcode, and can search to find what project it's on, who was assigned, when it was delivered, etc.
We can report ALL issues in the column with the below text mode:
displayname=Barcodes
listdelimiter=
listmethod=nested(issues).lists
textmode=true
type=iterate
valueexpression=CONCAT({name})
valueformat=HTML
I'm trying to narrow that to issues on a task called "Editorial", but the coding I have isn't working:
displayname=Barcodes TEST
listdelimiter=
listmethod=nested(issues).lists
textmode=true
type=iterate
valueexpression=IF({task}.{name}="Editorial",CONCAT({issue.name}))
valueformat=HTML
Anyone have an idea of where the code is going wrong? Thanks in advance!
Scott