Need help with JQL to find dates up to three days from today

Kel Hill
Contributor
October 12, 2021

I have a custom date field and need a filter that pulls in only issues in which that date field is not blank AND the date selected is not more than three days into the future.

Any help on query syntax appreciated.

1 answer

1 accepted

3 votes
Answer accepted
Jack Brickey
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 12, 2021

Project = abc and “my date field” is not empty and “my date field” < startofday(3d)

Jack Brickey
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 12, 2021

You may will want other conditions e.g. unresolved…

Project = abc and resolution is empty and “my date field” is not empty and “my date field” < startofday(3d)

Kel Hill
Contributor
October 14, 2021

Thank you so much!

Vitaliy Levushkin
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!
December 19, 2023

Thanks! It helped me too

Suggest an answer

Log in or Sign up to answer