What status code do I use for pulling "In Progress - Pending Approval" tasks in a report?
I'm working on a milestone report showing which Gates are Not started, In progress, and Complete. I have that working, but I noticed tasks that are "In Progress - Pending Approval" don't pull the way "In Progress" tasks do.
I looked around Experience League and tried adding an additional IF statement that looks for the status "INP:A", but that broke my entire column. Does anyone have ideas?
(The built in Milestone report doesn't meet our needs.)
Original, working column:
displayname=Gate 1 Status
listmethod=nested(tasks).lists
textmode=true
type=iterate
valueexpression=IF(IF(CONTAINS("Gate 1 Approval",{name}),{status})="CPL","Complete",IF(IF(CONTAINS("Gate 1 Approval",{name}),{status})="INP","In progress",IF(IF(CONTAINS("Gate 1 Approval",{name}),{status})="NEW","Not started")))
valueformat=val
Attempt that led to a blank column:
displayname=Gate 1 Status
listmethod=nested(tasks).lists
textmode=true
type=iterate
valueexpression=IF(IF(CONTAINS("Gate 1 Approval",{name}),{status})="CPL","Complete",IF(IF(CONTAINS("Gate 1 Approval",{name}),{status})="INP","In progress",IF(IF(CONTAINS("Gate 1 Approval",{name}),{status})="INP:A","Approval requested",IF(IF(CONTAINS("Gate 1 Approval",{name}),{status})="NEW","Not started")))
valueformat=val
Partial screenshot of report

Thank you!