Transitions to - Transitions from

[Measures].[Transitions to]
  - [Measures].[Transitions from]

Hello,
What does this code mean? Why can they show the total number of problems generated before each month?
I know what the PreviousPeriods function means, but I can’t understand what this code does. :thinking: I need someone to help me out :star_struck:
Thank you!

Hi,

The most straightforward solution to count issues created before each month is to use the Issues created in your formula:

Sum(
  PreviousPeriods([Time].CurrentHierarchyMember),
  [Measures].[Issues created]
)
+
[Measures].[Issues created]

Could that work for your report?

Kindly,
Janis, eazyBI support