The Finance person for our group discovered a nifty Task report included with our instance that has this column which itemizes the work assignments for a task:
listdelimiter=<br>
listmethod=nested(assignments).lists
name=Wrk Assignment(s)
stretch=0
textmode=true
type=iterate
valueexpression=CONCAT(right(CONCAT({assignmentPercent}),3),'% (', {workRequired}/60 ,' Hours) - ',{assignedTo}.{name})
valueformat=HTML
width=300
Their request was to break-out the Actual Hours column on the same report in the same way. I'm not very good at iterative lists, but I took a stab at it and it didn't work:
displayname=Act Hours (TEST)
isInlineEditable=false
listdelimiter=<br>
listmethod=nested(assignments).lists
listsort=intAsInt(actualWorkRequired)
querysort=actualWork
shortview=false
textmode=true
type=iterate
valueexpression=CONCAT(right(CONCAT({assignmentPercent}),3),'% (', {actualWorkRequired}/60 ,' Hours) - ',{assignedTo}.{name})
valueformat=HTML
width=300
I feel like in my haste I missed something. Or maybe it's not possible to iterate Actual Hours this way?