Filtering a Project Report with Nested Lists
So I have a project report that I have used nested lists to put certain task names that are the same across all projects as the columns of the report.
My problem is figuring out how I can create a filter or prompt based on those tasks and when they are marked complete.
Here is an example of the code being used in one of the columns of the report:
displayname=RFX
listdelimiter=<div>
listmethod=nested(tasks).lists
type=iterate
valueexpression=IF({name}="RFX", IF(CONTAINS("INP", {status}), "In Progress", IF(CONTAINS("CPL", {status}), "Complete", IF(CONTAINS("TIR", {status}), "Not Applicable", IF(CONTAINS("NEW", {status}), "", "")))), "")
valueformat=HTML
In this case, I'd be looking to somehow create a filter or prompt where it filters by RFX tasks marked Complete within the past two weeks.