The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

JQL today in date range of custom fields

hold thedor
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
June 16, 2022

I have two custom dates

Start Date example 01.06.2022

End Date example 08.06.2022

what if today is 03.06.2022

How to filter issue which now in this date range? Like today 03.06.2022 and show this issue?

 

look likes it works?

project = A and "Start date" >= startOfDay() AND "End date" <= startOfDay() 

 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

3 votes
Answer accepted
Sreenivasaraju P
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 Champions.
June 17, 2022

Hi @hold thedor ,

You can try with any of below queries.

"Start Date" <= startOfDay() and "End Date" >= startOfDay()

 

"Start Date" <= now() and "End Date" >= now()