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: 

Search for issues due at the same time

Дмитрий Мясников
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!
March 19, 2021

Hello everyone!

Intersting with this quirky searching:

How can i search for issues due at the same time (simultaneously) in some dynamic mode, without specifying the exact date?

For example, with this imaginary JQL:

project = ProjectName AND dueDate = simultaneouslyDueDateSearcher()

I will be glad even for a tip to find a solution.

2 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Trudy P Claspill
Community Champion
March 19, 2021

Depending on what type of values you are wanting to have for that data without plugging in an explicit date, here are some options:

1. There are some "endof..." and "startof..." functions to use for date comparison. See that info in this document.

https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-functions/

2. You can plug in values that will be relative to today like

duedate < -7d

...is Due Date is more than 7 days in the past. You can find that information as well as the functions in #1 in this document:

https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-fields/

1 vote
Jack Brickey
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.
March 19, 2021

there certainly isn't any JQL for this AFAIK. You could run a query and export to excel and use it to find duplicate due dates. With that said, what are you actually trying to achieve here? Maybe there is a different approach to solve it? Obviously you can do thing like due on a certain day, due today, due this week, etc.

Дмитрий Мясников
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!
March 21, 2021

I want to create structure in ALM Works plugin Structure + Gantt that will show me tasks that are running concurrently (scheduled for execution on the same date - due date field or another date custom field). And I was pondering if it is possible to make such a JQL query out of the box or if I need to look for another solution, plugin, script, etc.