Hello,
I have a custom (due) date field. when I measure the number of times the field was updated in a specific sprint, it also counts issues that moved from a previous sprint into that specific sprint.
For example: I’m in sprint A, I updated the custom date field to a later date in the next sprint (sprint B).
The Result:
When I’m measuring the number of issues that were updated (custom date field) within the sprint, It also counts the issues that were moved from the previous sprint.
Basically, i want to only measure that date field while it was updated only in the specific sprint.
Here’s the measure I have.
Sum(
Filter(
Descendants([Issue].CurrentHierarchyMember,[Issue].[Issue]),
Not IsEmpty([Issue].CurrentHierarchyMember.get(‘Drop Schedule old values’))
)
)
The field name is “Drop Schedule”.