Hi Heidi!
This might work for you. If you use this code in a task report, it will show any tasks that meet the following criteria:
- The Assigned To primary user is within the team called "Email Team" (you'd need to replace "Email Team" with the name of the team that you want to search for)
- Actual Completion Date of the task is within the current month (if you need this to be a rolling cutoff of the past 30 days, you could change $$TODAYbm to $$TODAY-30d)
- Task Status equals Complete (this is to keep "Cancelled" tasks out of your report, but you can add/remove whatever statuses you need here)
EXISTS:a:$$OBJCODE=USER
EXISTS:a:ID=FIELD:assignedToID
EXISTS:a:teams:name=Email Team
actualCompletionDate=$$TODAYbm
actualCompletionDate_Mod=gte
status=CPL
status_Mod=in
If you need to make your own filters, build them in standard mode. Then, switch to text mode and add the 3 rows of EXISTS filters to the end of your code.
Chloe