Drill through Issue. Total value: 3; row count: 1

CASE WHEN [Measures].[Ageing created] > 45
THEN
NonZero(
Count(Filter(
Descendants([Issue].CurrentMember, [Issue].[Issue]),
(DateDiffWorkdays(
(
[Measures].[Incident Reported Date]
)
,
(
[Measures].[Transition to status first date],
[Transition Status].[Requirement Complete]
)
)>10)
)))
END

Hi @madhuri

Your formula is almost correct, the only slight adjustment needs to be made where you move the case statement into the filter part as well.

Here is an adjusted formula:

NonZero(
Count(
  Filter(
   Descendants([Issue].CurrentMember, [Issue].[Issue]),
   [Measures].[Ageing created] > 45 AND
   DateDiffWorkdays([Measures].[Incident Reported Date],
   ([Measures].[Transition to status first date],
   [Transition Status].[Requirement Complete])
   )>10
  )
))

Best wishes,

Elita from support@eazybi.com