You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
After making a massive update of the value of a field on some issues, a project automation was triggered automatically.
The result is that the status of all these issues has changed to “Closed” (even though they were already “Closed”).
Now, when we generate the eazyBI report, using the measure "issues closed", we find all those issues closed on April 12.
My questions are:
Thanks and Regards
Monica
Hi @mfreirem
eazyBI considers "Issue closed date" as the last date when the issue transition to statuses that are defined as "Closed" in data source import options: https://docs.eazybi.com/eazybi/data-import/data-from-jira#DatafromJira-Statusesandhistory
This field is defined only in eazyBI.
You may want to use the issue's historical dimension and measures to get the date when the issue first transitioned to the status closed. Use this formula to create a new measure in the "Measure" dimension and get the first date as property:
([Measures].[Transition to status first date],
[Status].[Closed],
[Time].CurrentHierarchy.DefaultMember)
And use this formula to create a measure that you can use instead of "Issues closed". It will count issues by when they first transitioned to "Closed" status.
sum(
Filter(
DescendantsSet([Issue].CurrentMember, [Issue].[Issue]),
DateInPeriod(
([Measures].[Transition to status first date],
[Status].[Closed],
[Time].CurrentHierarchy.DefaultMember),
[Time].CurrentHierarchyMember
)
),
[Measures].[Transitions to issues count]
)
Best,
Gerda // support@eazybi.com
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.