Calculate how many issues are in submitted more than 10 working days

I tried to create a user defined measure to count how many issues are more than 10 working days in submitted.

I created:

10:
– days in current status from last transition for open issues
IIf(
( [Status].[Submitted] > 0

and
– calculated days in status
DateDiffDays([Measures].[Issue created date], Now()) >10),1,0
)

and late submitted:
sum([Measures].[>10])

The result, when looking for just issue type is:

But, when I look per issue:
it shows late issues, but the summary i 0. Why is this?
How to solve this problem?

Hi @Annette

It looks like you asked a similar question in the other Community post here - How to create a measure counting all open issues which are in Submitted more than 10 working days? - #8 by Elita.Kalane

Please try the measure I suggested there and see if it returns expected results.

Best wishes,

Elita from support@eazybi.com