Hello, I need to create weekly report from on e specific project board on issues that's been created from Sun to Sat every week and email it to me.
Is there a way to use JQL query to get that going and make sure it runs every week to create the report.
Thank you so much!
Luda
something like this....
project = abc AND createdDate >= startOfWeek()
set up a subscription to run every Sunday evening just before midnight (depending on your start of week).
Hey Jack, if project have several boards and I need to run this only on one of them, how do I specify that?
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
knowing that report have to come out every Sunday at 11:59pm covering all created issues from Sunday to Saturday. I believe that jira also have a way to email the report to specific recipients. Is that correct? Thank you, again!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you create a filter that mirrors the filter of the specific board you are interested in. If this is a classic board go to board settings > general > edit filter. copy the filter and add in the createddate info I shared previously.
the subscription will allow you to define who receives the email. You can also choose to use the saved filter on a dashboard if you want.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not sure I have an ability to copy and create new filter. If I get an access, is that query which you mention would give me all created jira's for a specific week and then set to report on every week after that? Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
would something like that works?
project = "Cloud Support Engineering" AND createdDate >= startOfWeek(-1) AND createdDate <= startOfWeek(-1)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i don’t know why you would want/need the second part - cresteddate <=...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If I need to have report for every week from Sun to Sat, I would not need second part? Cool thanks for navigation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You only need the second part if you run the query well into the next week or beyond, I.e. you are querying outside of the current week.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.