Count a subset of closed issues

Antonio Dionisio September 21, 2016

All the closed issues of our project have a service evaluation value ranging from 1 to 5. How could we get the issues that were evaluated with a 5 by assignee in eazybi?

For example:

 

Assignee   Number of issues evaluated with a 5

--------   -------------------------------------

Bill           4

Jean           5

 

...

1 answer

1 accepted

1 vote
Answer accepted
Sir Mārtiņš Vanags
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.
September 21, 2016

Hi Antonio,

If you have created a new JIRA custom field (numeric type) where you are entering evaluation for completed issue, you could at first import this custom field in eazyBI as Issue property (via eazyBI import settings) and then use it when creating a new user-defined calculated measure "Number of issues evaluated with 5".

Try following MDX code where you must use your actual field name from JIRA (case sensitive) in the code instead of 'Service Evaluation'.

 

NonZero(
Count(
 Filter(
 Descendants([Issue].CurrentMember, [Issue].[Issue]),
 Not IsEmpty([Issue].CurrentMember.get('Resolved at'))
 AND
 [Measures].[Issues created]>0
 AND
 [Issue].CurrentMember.get('Service Evaluation')=5
  )
 )
)

 

Please contact support@eazybi.com if you have further questions regarding this!

 

Kind regards,

Martins Vanags / support@eazybi.com

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events