Filtering Collections
I am trying to create a project report that filters out all tasks without a milestone and show all the milestone tasks and their percent complete.
The field I created:
displayname=Milestone Tracking
listdelimiter=<br>
listmethod=collected(tasks).list
textmode=true
type=iterate
valueexpression=CONCAT({milestone}.{name},"| ",{percentComplete},"%")
valueformat=HTML
and the filter:
tasks:milestoneID=0
tasks:milestoneID_Mod=notblank
For each project, I return all tasks instead of milestone tasks. Does anyone know how to filter out non-milestone tasks correctly?
Thank you,