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.
I am using the Cumulative Story Points completed measure in eazyBI to show project burn-up over time. I'd like to add some forward looking projections based on the story point completion rate over the past 6 weeks.
To do this, I need to have the story points completed today (easy) and the story points completed 6w ago as the starting point for the calculation but I am at a loss to find out how to get the completed story point value from 6w ago (highlighted below).
I thought it would have been as easy as creating a tuple of the 'Cumulative Story Points completed' measure and the date - 6w but nothing I've tried produces the output I want.
Something like this:
(
[Measures].[Cumulative Story Points resolved],
[Time].[Week].DateMember(DateAdd('ww', -6, Now()))
)
I feel like there's a simple solution here that's just going over my head entirely. Does anyone have any ideas or examples to share?
Any help is much appreciated!
Found a working solution…this isn’t exactly it but it shows what I was going for next which was the total story points completed over 6 previous weeks.
I didn’t know you could use a colon between to members to create a set of members. ‘Lag’ is also new to me.
Sum(
{[Time.Weekly].[Week].CurrentDateMember.Lag(6):
[Time.Weekly].[Week].CurrentDateMember.PrevMember},
[Measures].[Story Points resolved]
)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.