Hi all, can you please tell me, why this
assignee in membersOf(Mustererkennung) AND ("status = open") >= '2017-06-13' AND ("status = open") <= '2017-06-20' ORDER BY ("status = open")
doesn't work. I want to know all open jira issues in a specific week.
Thanks
10000 thanks - this is surviving my entire day ;)))
is there also a possibility to show only open issues (right now I am also getting closed one's)
Where can I find all words for the query's
you're welcome :-)
if you want to see only open issues, add "and status = open" to your query:
assignee in membersOf(Mustererkennung) AND status was open DURING ('2017-06-13', '2017-06-20') and status = open
You can find a full documentation of JQL here:
https://confluence.atlassian.com/jirasoftwareserver073/advanced-searching-861256227.html
BTW, if you think, your question is answered, please mark it as answered. With that mark, other user can find answered questions more easy, thank you.
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.
Hi Silke,
try that:
assignee in membersOf(Mustererkennung) AND status was open DURING ('2017-06-13', '2017-06-20') order by status asc
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.