JQL today in date range of custom fields

hold thedor 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

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 Leaders.
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()

Suggest an answer

Log in or Sign up to answer