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.