You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi there,
I am trying to set up a filter to searh for issues which have comment(s) not older than a week.
I need this to make a report of my weekly process easily,
Thanks for your help!
Gobby
Hi @Ildi Hajdu ,
Welcome to community!
I do not think this is achievable out of the box. But if you have scriprunner plugin installed, you can use a clause like below
issueFunction in commented("after -1w")
More info in https://scriptrunner.adaptavist.com/5.5.8/jira/jql-functions.html#_comments
Hope this helps!
As mentioned by Fazila, you can use third party plugins to achieve like ScriptRunner, JQL Search Extensions for Jira & reports
I am using JQL Search Extensions for Jira & reports and here is the example how you can achieve your results.
CommentedBetween can be used to find issues with comments added between particular dates. Expected date format is yyyy-MM-dd (year dash month dash day of the month) or dd-MM-YYYY
issue in commentedOnDate("2018-05-26")
CommentedBefore can be used to find issues with comments added before particular date. Expected date format is yyyy-MM-dd (year dash month dash day of the month) or dd-MM-YYYY
issue in commentedBefore("2018-05-26")
Reference:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.