Calculate Total Number of days between two date stamps for multiple issues (EazyBi)

Simon Schermerhorn November 7, 2017

Essentially I need to find the aggregate of "Days in 'New'" across issues. 

I have a table that will spit out the total but I need a formula that includes the total number of "Days in 'New'" and divide it by the issues with open date to get an average. 

So far I have only been able to calculate the "Days in New" for each individual issue.

I am using two different date stamps to calculate days in new/open/pending.

This was my first attempt at the formula:

image.png

And these are the results. As you can see, If I sort by individual issues it works fine but when I collapse it to get an average of the project I don't get any results.

image.pngimage.png

1 answer

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.
November 13, 2017

Hi Simon,

 

Well done with the code so far! It works correctly at issue level indeed.

To make it work also on the project level in "Issue" dimension, you may want to use the following code which is universal

CASE WHEN
[Measures].[Issues with open date] > 0
THEN
NonZero(
AVG(
Filter(
Descendants([Issue].CurrentHierarchyMember,[Issue].[Issue]),
Not IsEmpty([Measures].[Issue Open Date])
AND
[Measures].[Issues with open date]>0
),
DateDiffDays(
[Measures].[Issue created date],
[Measures].[Issue Open Date])
)
)
END

 

Kind regards,

Martins / eazyBI team

Suggest an answer

Log in or Sign up to answer