Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi, I'm trying to find out if our JIRA reporting can be improved with ScriptRunner (which is installed as a demo version). I'm not a dev therefore I was not able to find a proper solution for this scenario:
I need all tickets
which were created from a member of a certain group in JIRA
and which were not updated after creation in any way (e. g. change of status from new to in progress) within a certain number of days.
I've managed to create a query which refers to today but this does not match to the query above:
issueFunction in expression("", "created +14*d > today") and reporter in (...)
I would be very happy for any help.
You can do this without scriptrunner. Here is JQL for your case:
creator in membersOf("jira-users") AND NOT status changed from new to "in progress" AFTER startOfDay(-10d)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
just curious why JQL
Updated = Created
is invalid?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunatelly is is so.
Here you can use dateCompare from ScroptRunner: https://jamieechlin.atlassian.net/wiki/pages/viewpage.action?pageId=57999378#ScriptedJQLFunctions-dateCompare(Subquery,datecomparisonexpression)
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.