Hi community,
I am new in EazyBI.
I am trying to have a timeline report showing for every month the sum of original estimates planned.
The due date field is not filled as the issues are planned in sprints, with each sprint having a start and an end date.
Thank you all for your support.
Maher
Hi @Maher_Malak ,
Welcome to eazyBI support!
If you have some time selection for which you want to see the time planned, you can check this post:
Hi @Joel_Christ ,
eazyBI doesn’t have integration with Tempo Budgets, but here is the formula that you can use to calculate the Burn-up and Burn-down line.
To get the report “Start date”:
ConstantValue(
VisibleRowsSet().Item(0).item(0).StartDate
)
To get the report “Ed date”:
ConstantValue(
DateAddDays(
Tail(
VisibleRowsSet(),
1
).Item(0).item(0).NextStartDate,
-1)
)
You need to have some value to burn. In my example, I am using “Original estimate…
Another option is to see time tracking burn-down in sprint using this demo report:
https://eazybi.com/accounts/1000/cubes/Issues/reports/144076-time-tracking-burndown-in-selected-sprint
best,
Gerda // support@eazybi.com