Hello there,
Is it possible to filter Jira into this result:
"Tickets commented by currentuser in the last 14 days"
I just found this one:
"commentedBy = currentUser() AND updated > "-14d" ORDER BY updated DESC"
But I just want to know if the user's last comment was created within the last 14 days.
I don't care if someone else has commented in the last 14 days.
Best regards
You could use the JQL clause, updatedBy(user, dateFrom, dateTo)
If you want more option based on comment on a date, then you wil need to look for a marketplace app that will extend the JQL options.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
updatedBy is a standard ootb JQL function
https://support.atlassian.com/jira-software-cloud/docs/jql-functions/#updatedBy--
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thank you very much. I use this in a wrong way before.
It works but only by using a specific User.
Is there a way to specify “current user”?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No there is not, only a specific user.
If you add marketplace apps that can extend you JQL options, that will suite your need.
Like; JQL Search Extensions for Jira
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.