Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Automatic last week done tasks through email subscription

Osama Al-Areky June 17, 2024

Hello,

Is there a way to create a filter that shows only the tasks done the last week, automatically for the subscription to receive it by mail, without determining the dates,

Thank you,

 

1 answer

0 votes
Bill Sheboy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 17, 2024

Hi @Osama Al-Areky 

Yes, that is possible, and...

First thing, I recommend learning more about writing JQL queries like this.  That will help you write and maintain the queries in the future.  To learn more about that, please see this free training and documentation from Atlassian:

 

Back to your question...there are several ways to do this with JQL, save the filter, and subscribe to it and receive weekly emails.

For example, to specifically check the status values:

project = myProjectName
AND status = Done
AND status CHANGED TO Done DURING ( startOfWeek(-1), endOfWeek(-1) )
ORDER BY Resolved ASC

Or, to create a filter which ignores the specific Status names, in case they change in the future, use the statusCategory fields:

project = myProjectName
AND statusCategory = Done
AND statusCategoryChangedDate >= startOfWeek(-1)
AND statusCategoryChangedDate <= endOfWeek(-1)
ORDER BY Resolved ASC

 

Kind regards,
Bill

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events