Report to display programs with active projects | Community
Skip to main content
New Participant
November 9, 2022
Solved

Report to display programs with active projects

  • November 9, 2022
  • 1 reply
  • 824 views

Hi WF Community,

I'd like to generate a report that shows me all programs that have active projects within them.

* Active projects = project Status not in Deleted, Complete, Scoping Archived

* This must take into account that some programs might have completed projects AND active projects. These programs should show up on my report.

 

I'm thinking maybe this is a project report with an EXISTS in a text mode filter?  We don't deactivate programs, and we're yet to create a custom program Status field.

 

I'll continue to see if I can find a way, but any suggestions are welcomed.
Thanks,

Nick

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Richard_Le_

Hi Nick,

 

The below should do it. This will return all programs that have projects within them in active status, regardless of whether or not there are other projects in a closed status within that program

 

EXISTS:a:$$EXISTSMOD=EXISTS 
EXISTS:a:$$OBJCODE=PROJ 
EXISTS:a:programID=FIELD:ID 
EXISTS:a:status=CUR + ANY OTHER STATUSES THAT REPRESENT ACTIVE IN YOUR INSTANCE
EXISTS:a:status_Mod=in

Best Regards,

Rich

1 reply

Richard_Le_Accepted solution
New Participant
November 9, 2022

Hi Nick,

 

The below should do it. This will return all programs that have projects within them in active status, regardless of whether or not there are other projects in a closed status within that program

 

EXISTS:a:$$EXISTSMOD=EXISTS 
EXISTS:a:$$OBJCODE=PROJ 
EXISTS:a:programID=FIELD:ID 
EXISTS:a:status=CUR + ANY OTHER STATUSES THAT REPRESENT ACTIVE IN YOUR INSTANCE
EXISTS:a:status_Mod=in

Best Regards,

Rich

NickVa7Author
New Participant
November 10, 2022

Great stuff, thanks, Rich!

This will also help me in understanding and learning EXISTS better, as I don't spend enough time using them.