Hi @IT Admin, you can use the JQL function now(). See the syntax for this here.
Notice the time is stored and compared in milliseconds hence using a JQL like the one below will normally give zero results.
Status = Schedule AND "Planned Start" = now()
This because Jira returns the the exact millisecond for now() which normally will be a larger number than the exact minute for the current time, and the stored time in Planned start will have stored milliseconds only to the exact minute.
This image shows an example of this. I created an issue and the executed this query within 2 seconds after the creation.
So in prectical sense > (larger than) or < (smaller than) gives more usefullness for the now() function than = (equal).
You can use other meassures to return the wanted issues. E.g using a period format. This JQL in example returns all issues created within the last minute.
created > "-1m"
So for your JQL something like this might be working
"Planned start >= "-1m" AND "Planned start" < "1m"
This will return all issues within the current minute of the JQL execution. You might try and play around with it.
TimK.
To supplement what @Tim Kopperud suggested, here is a reference link on JQL syntax that can assist you further on date fields -
JQL Functions - https://support.atlassian.com/jira-software-cloud/docs/jql-functions/
JQL Advanced Search - https://support.atlassian.com/jira-software-cloud/docs/what-is-advanced-search-in-jira-cloud/
Hope this also helps.
Best, Joseph Chung Yin
Jira/JSM Functional Lead, Global Technology Applications Team
Viasat Inc.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
You can check the JQL Functions on Jira support https://support.atlassian.com/jira-software-cloud/docs/jql-functions/.
You can check now() function that search based on current time.
Regards,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.