Total of hours spent until today in issues

hello everyone i would like to know how i could add up (sum )all the hours spent in all the time since i started in the eazybi from all sprints all the time from all the issues in the others words total of hours spent until today in issues

1 Like

Hi @EduardoSalesBR,

I think you can get that using the “Hours Spent” measure in Column and the Issue dimension in Rows.

Like this
image

Have a good day,
Marilou

4 Likes

@EduardoSalesBR

You can try creating new calculated measure using this formula

It will count all the “Hours spent” regardless of the report context

DefaultContext(
[Measures].[Hours spent]
)

And the next one would return the total hours spent for the specific user (if selected) in any report context.

DefaultContext((
[Measures].[Hours spent],
[Logged by].Currentmember
))

Martins / eazyBI

2 Likes