Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to Work with JQL while Developing Report?

tousifs
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 22, 2012

I am Developing a Report where i want to calculate time spend by each user for each issue please guide me.

2 answers

1 accepted

1 vote
Answer accepted
JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 22, 2012
tousifs
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 22, 2012

can i get the source for same which i can extend

JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 22, 2012

Can you look at the link I sent, you will see a link to the source.

tousifs
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 24, 2012

thank's it fulfil my requirement.

0 votes
Pablo Beltran
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 1, 2015

Well. people reading this post might be also interested in the SQL for JIRA plugin as it is able to make such reports seamlessly:

 

select ISSUEID, SUM(TIMESPENT) as "Effort"
from ISSUESWORKLOGS
where
 CREATED >= PARSEDATETIME('2014-01-01','yyyy-MM-dd')
and
 CREATED <= PARSEDATETIME('2014-12-31,'yyy-MM-dd')
group by ISSUEID
order by 2 desc

 

Of course, you might want to group by user or any other JIRA data by using the SQL join feature. The plugin is really quite powerful and flexible and it supports any JIRA entity like projects, versions, custom fields, etc.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events