Expand my Community achievements bar.

Report that only shows projects that have tasks assigned to certain role ids

Avatar

Level 1

I am trying to build a project report that only pulls projects that have tasks assigned to a specific group of role ids within that project. The goal is to show the amount of projects a specific team is included on in a fiscal year. 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

2 Replies

Avatar

Community Advisor

Stephanee, 

Something like below:

Kurt_Jones_0-1718912786122.png

 

It's a Task Report, grouped by project name (you can group by role as well).  For filters, use AssignedTo->Role ID and input the role (I used Project Manager, but you can list as many roles as needed), I also had filter that Project status not equal to Complete, and Task status not equal to Complete.

Avatar

Level 4

Hi Stephanee, 

 

If the other suggested option of a Task report, grouped by Projects doesn't work for you, you could use a Project report and the "EXISTS" function. In this report you would essentially be saying "show me all of the projects where exists at least 1 assignment to this role".

 

Here is an example to start you off. In a Project report, in text mode, paste the following:

EXISTS:A:$$OBJCODE=ASSGN
EXISTS:A:projectID=FIELD:ID
EXISTS:A:assignedTo:roleID=ROLE ID HERE
EXISTS:A:assignedTo:roleID_Mod=in

 

Replace "ROLE ID HERE" with your roleID. You may need to add more filters to either the EXISTS statement (so, adding more lines starting with "EXISTS:A") or to the report overall to suit your specific needs.