Calculated measure with backdated date field (JIRA)

So far, I managed to get it resolved with the help of the following question/answer:

[Measures].[Carried forward] = 

NonZero(
  Count(
    Filter(
      Descendants([Issue].CurrentHierarchyMember, [Issue].[Issue]),
      NOT IsEmpty([Issue].CurrentHierarchyMember.get('Received Date'))
      AND DateCompare(
        [Issue].CurrentHierarchyMember.get('Received Date'),
        [Time].CurrentHierarchyMember.StartDate
      ) <= 0
	  AND NOT IsEmpty([Issue].CurrentHierarchyMember.get('Submission Date'))
	  AND DateCompare(
		[Issue].CurrentHierarchyMember.get('Submission Date'),
		[Time].CurrentHierarchyMember.StartDate
	  ) > 0
    )
  )
)

Notes:

  • I could not use [Measures].[Issue Received Date] property directly becuase I have formatted it in ISO date format.
  • Understandably in my case, we also have a field named Submission Date. The case was corrected as “Number of issues where Received Date is prior the current quarter, but submitted during the current quarter or in the future”. In Progress status was not taken into account.

Thanks to @jlopmor and eazyBI staff @ilze.leite for the answer in the mentioned thread.

Regards,
Shaaku