We have created a task (common task like learning process) in the Jira, and multiple users are added a time spent in that task. For example,
User 'a' added 3h for 21/05/2020 and
User 'b' added 2h for 22/05/2020 again
User 'a' added 5h for 22/05/2020
I want to generate a report (write a JQL query) to calculate the user 'a' ,how much time spent in that task same for user 'b' also.
@Jack Nolddor _Sweet Bananas_ No, is it possible from JQL? because I need to show this in our Jira Dashboard?
User wise time spent for the particular Jira id.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JQL has not groupBy operator, so you cannot sum() worklogs.
To report worklog on Gadgets you can use Time Reports (PAID) third-party app.
Regards
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 there,
You can use
worklogAuthor in (user a, user b) ORDER BY key ASC/DESC
and select the Σ Time spent column to display.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I believe the field Σ Time spent does not split the results by users which is the OP requirement.
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.