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 !
I would like to create a bar-chart report (or a table):
One bar for each month.
The size of each bar (each month) should be the average of created issues per day.
Example:
July: total of 300 issues -> average per day (300 / 30) = 10 issues per day
August: total of 210 issues -> average per day (210 / 30) = 7 issues per day
September: total of 150 issues -> average per day (150 / 30) = 5 issues per day
I tried to use the calculation (https://docs.eazybi.com/eazybi/analyze-and-visualize/create-reports#Createreports-Addstandardcalculationsbasedonaselectedmeasure) , but not sure if is it possible do do it.
Hi,
Considering the Time dimension is used in the report rows, the following custom measure should do the average calculation:
[Measures].[Issues created]/30
We can create a more advanced formula to have the exact number of days in the month:
([Measures].[Issues created])
/
DateDiffdays(
[Time].CurrentHierarchyMember.StartDate,
[Time].CurrentHierarchyMember.NextStartDate)
Kindly,
Janis, eazyBI support
Hi @fbeck_br ,
If you're using an app, I recommend you create a ticket on the eazyBI customer portal: https://eazybi.com/contact. Unfortunately, I see that you have to wait until Monday to receive an answer.
Best,
Kate
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.