I'm trying to create a report that will detail exactly how many requests were open on a given date. We already have a report will tell us how many tickets were created & resolved but not what the total of how many were open.
Apologies, new to JIRA so looking for guidance.
Thanks
I could think of a query like the following which would show you the issues "In Progress" for a specific day:
project = DEMO AND status WAS "In Progress" DURING (2021-02-19, 2021-02-20)
Regards,
Daniel
Awesome ! - thanks a bunch @Daniel Ebers
That gives me what I'm after - is there a way to refine this to use the current date - 90 days and provide just a count for each day ?
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
how will you input the given date? If this is static and you just want to find everything created say yesterday...
createdDate >= startOfDay(-1) and createdDate < startofday()
or a specific day of say March 16, 2021...
createdDate >= 2021-03-16 and createddate < 2021-03-17
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 this - looking at my question again and I could have worded it better I think. I already have reports to provide how many tickets were opened and how many were resolved for last 7, 30 & 90 days. What I don't have is a way to report on how many Service Requests in total were open (so I guess in an Unresolved state) on a given date.
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 @Jana Jäger ,
The following JQL query example will give you the total number of issues opened for project abc on a given date (July 28, 2022) from midnight until 11:59 PM.
project = abc and (created > 2022-07-28 and created < 2022-07-29)
Does this meet your needs or are you looking for something different?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you a lot, @Jack Brickey
Can you by chance also help me to get a report of the number of requests per customers? I would need to see every customer at once and their amount of requests for a specific time period (e.g. last year/month)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jana Jäger ,
For your requirement does the term "customer" refer to an individual creating a ticket or two and organization that consist of mini JSM Customers?
if it is by individual creator, then I would simply use Order by creator in my JQL. For example, if I want to find issues created in Q1 - Q4 of each quarter then I would do the following.
Q1 of current year -
created >= 2022-01-01 AND created <= 2022-03-31 order by creator DESC
Then create the three other quarterly JQL filters and save them. Next, I would create a quote "last year" dashboard and add a gadget for each filter. Select the columns that you desire in your display.
Now, if you wanted to do the latter, where you could group all of the issues under the organization, then unfortunately, it's not as simple. There is not an order by organization or creator in membersof() an organization within the JQL syntax. However, there is a means of doing this with a bit of effort. This has been discussed a number of community posts. I found this one where Sergey does a good job of explaining the solution in my opinion.
by the way, here is the outstanding Jira request to add this capability. I would suggest voting and watching if you're interested. JSDCLOUD-4548 Field Organization is not sortable by JQL
finally, the above details may be off the market a bit as it really depends on exactly how you want to see the information. In the end, I'm confident you can find a solution to achieve your goal, even if you have to step outside of Jira and look to a add-on or simply use Excel
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.