issues resolved before due date eazybi

Michael Blake May 25, 2016

I need a report that shows the percentage of issues resolved before their due date using fields duedate and resolutiondate.

2 answers

0 votes
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.
May 30, 2016

Hi Michael,


With the help of eazyBI calculated measures, it is possible to create your expected calculation.

As I understand your question, you would like to create two calculated measures:

  • Issues resolved before due date (count of issues where resolution date is earlier than due date)
  • Issues resolved before due date % from all issues resolved ( count of issues where resolution date is earlier than due dated divided by count of all resolved issues

You could use formulas below. But be aware of calculated measure names in formulas.

Please also find documentation how to create calculated members in eazyBI:

Issues resolved before due date:

 NonZero(Count(
    Filter(
      Descendants([Issue].CurrentHierarchyMember, [Issue].[Issue]),
     [Measures].[Issues resolved] > 0 
     AND 
      DateDiffDays([Issue].CurrentMember.get('Resolved at'),
        [Issue].CurrentMember.get('Due date')) > 0
    )
  )
  )
 

Issues resolved before due date % from all resolved issues:

CASE WHEN [Measures].[Issues resolved] > 0
THEN 
  [Measures].[Issues resolved before due date] /
  [Measures].[Issues resolved]
END


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

 

Kind regards,

Martins Vanags / support@eazybi.com

0 votes
Katherine-Anne Jansen May 25, 2016

You may be able to create a calculated field for Overdue and use that for your pie chart (which will give you percentages)

Suggest an answer

Log in or Sign up to answer