How to filter Jira issues with a Due Date of more than a week? month?
Hi @Nadiia Boiko , there are a lot of similar posts in the Community so you might find alternatives to my answer below.
if you want to find issues in project abc due after 30d from today...
project = abc and duedate >= startofday(30) and statusCategory != done
if you want to find issues that are past due for more than 30d...
project = abc and duedate < startofday(-30) and statusCategory != done
Thanks a lot! it works!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.