i need to run a report of all issues closed/accepted /rejected by a specific user within a 3 month period, how do i do this?
(the tasks do not necessarily need to be assigned to the user)
some thing like this
project = yyyyy and assignee = "xxxxxxxx" and created < startOfMonth(3)
please also check
https://confluence.atlassian.com/jirasoftwareserver073/advanced-searching-fields-reference-861256237.html
instead of assignee, you can use
reporter or creator.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thank you for your help, i have tried the query you sent, but not getting results from the "StartOfMonth"
i need to give a report of all the tasks i have accepted for the team, so the tasks may not be assigned to me, how do i search for "accepted by"?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if accepted by is a custom field, you can use it.
project = yyyyy and "accepted by" = "firstname Lastname" and created < startOfMonth()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
otherwise if you skip, the assignee parameter, it should return all issues independent on ho was assign to it.
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.