Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,553,856
Community Members
 
Community Events
184
Community Groups

How would I write a JQL filter for Thursday at noon (last week) to Thursday 11:59am this week?

We run reporting on Fridays so I have to pull tickets on Thursdays and do follow ups.  In the past tickets that go in on Friday morning or after our Friday meetings somehow get overlooked.  I wanted to update our filter and cutoff time for my reporting in JQL to look for instances from last thursday at noon to this week thursday at 11:59a (essentially capturing a week's worth of tickets but for a Thursday to THursday with a specific time cutoff)

2 answers

1 accepted

1 vote
Answer accepted

Thank you so much for the response! My weeks are rolling weeks however so I cannot specify exact dates other than Thursday to Thursday.  

Himanshi
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Apr 28, 2023 • edited

@Melissa Pelletier , You can give a try to updatedDate  >=  startOfWeek(-8)  and updatedDate   <= startOfWeek(-4) 

But with that you would not be able to define time range.

Thank you for this! this one worked   

Himanshi
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 01, 2023

I am glad,It helped :)

Have a nice day!

Cheers!

1 vote
Himanshi
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Apr 28, 2023

Hello @Melissa Pelletier ,

Welcome to the community.

You can try using :

project = "your-project-name" AND created >= "2023-01-01" AND created <= "2023-12-31" order by created DESC

For confined result about the time range try :

project = ProjectName and created >="yyyy/MM/dd 10:00" AND created <="yyyy/MM/dd 08:00"

I am sharing some community post to more references: https://community.atlassian.com/t5/Jira-questions/JQL-for-Filter-by-date-range/qaq-p/947641#:~:text=You%20need%20to%20use%20the,week%20here%20is%20example%20JQL.

https://community.atlassian.com/t5/Jira-questions/how-can-I-create-a-jql-filter-with-time-range-between-two-dates/qaq-p/675451

https://community.atlassian.com/t5/Jira-questions/JQL-for-Filter-by-date-range/qaq-p/947641

Hope it would help you. 

Have a great day! 

Suggest an answer

Log in or Sign up to answer