Hi all!
I have a task report which pulls parent tasks with a certain name. The second column is the parent task name + a custom field called "Internal Design Comments" and it is working properly; the third column should be a list of child tasks alongside any "Internal Design Comments" at that task level, but it isn't working.
The second column is done in text mode like so:
column.1.displayname=Parent
column.1.sharecol=true
column.1.textmode=true
column.1.valuefield=name
column.1.valueformat=HTML
column.2.textmode=true
column.2.tile.name=component.customdata.richtextlistview
column.2.type=tile
column.2.valuefield=Internal Design Comments
column.2.valueformat=customDataRichTextAsString
For that third column, I can't get Internal Design Comments to pull in next to the tasks I'm listing... this is what I have:
displayname=Child Tasks
listdelimiter=<p>
listmethod=nested(children).lists
type=iterate
valueexpression=CONCAT("• ",{name},IF({DE:Internal Design Comments}="",""," — ",{DE:Internal Design Comments}))
valuefield=name
valueformat=HTML
Does this not work because the Internal Design Comments is a "tile" / rich text? Anyone have a creative workaround?
TYIA!