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
...
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
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.