How can I generate an Agile Version Report for multiple projects?

Mike Lange January 16, 2014

I must be missing something simple here. I've got an agile board set up to support multiple projects, but when I try to view a version report it appears that Agile only supports viewing the report on one project at a time because it prefaces each available version to report on with the project name.

Is there any way to get a story point burn down of some sort or another on >1 project at a time?

Thanks,

Mike

1 answer

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.
April 8, 2016

It would be easy by using SQL for JIRA.

The following query will get all the versions for all the boards:

select * from AGILE.BOARDS b inner join AGILE.BOARDVERSIONS v on v.board.id=b.id

Then join the ISSUEVERSIONS table to get the issues for each version above and the ISSUECUSTOMFIELDS table to get the Story Points, etc.

Suggest an answer

Log in or Sign up to answer