Hi all,
I want to report progress of epics by creating a table with epics and the percent ratio of done/all issues in epics. This seems easy, just join the table with the Epic name, however my epic names contain special characters.
Here's the scenario:
Table 1 T1 is a jira query returning the epics with the epic name as column
Table 2 T2 is a jira query which returns all issues in epics returend by table 1
What I want to do(pseudo script):
Select T1.'Epic name'
(count T2.'Key' where status is resolved or closed) / count all T2.'Key')*100
FROM T1
join via epic names
The result I'd like to have:
| Epic from T1 | Percent done |
| epic 1 | 10 |
| epic 2 | 30 |
My problem is that joining does not work correctly because the epic names in T1 are messed up, and do not display correctly due to the special characters displayed as HTML codes: & as & , Ü as Ü and I cannot find any other values which could be used. Interestingly the epic names coming from T2 are perfectly fine...
There is also an open bug regarding this: https://jira.atlassian.com/browse/CONFSERVER-54431
Is there any way around this? Any help would be appreciated!
Thanks!