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.
Community moderators have prevented the ability to post new answers.
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/
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
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.