Exists Statement to Filter Project Report Based on Assignments | Community
Skip to main content
Level 2
March 11, 2026
Solved

Exists Statement to Filter Project Report Based on Assignments

  • March 11, 2026
  • 1 reply
  • 41 views

Hello, I am currently working on filtering a project report by task assignees manager. One of our design manager’s would like to see a full project report that is filtered for projects that their direct reports have been assigned tasks on. I think an exist statement would probably be the best way to do this but I could be overlooking something much simpler. If anyone has any suggestions that would be appreciated.

Best answer by abi_rains

oh this actually ended up working for me:

 

EXISTS:A:$$OBJCODE=TASK
EXISTS:A:projectID=FIELD:ID
EXISTS:A:assignmentsUsersMM:managerID=123
EXISTS:A:assignmentsUsersMM:managerID_Mod=eq

1 reply

abi_rainsAuthorAccepted solution
Level 2
March 11, 2026

oh this actually ended up working for me:

 

EXISTS:A:$$OBJCODE=TASK
EXISTS:A:projectID=FIELD:ID
EXISTS:A:assignmentsUsersMM:managerID=123
EXISTS:A:assignmentsUsersMM:managerID_Mod=eq

Lyndsy-Denk
Community Advisor
Community Advisor
March 19, 2026

Ah, this is great! For specifying the managerID, I subbed in the $$USER.ID wildcard. This made a report that any manager can pull up.

abi_rainsAuthor
Level 2
March 19, 2026

that is a great idea! thank you!