Original estimated hours vs hours spents

Hi, I´m trying to create a simple report that will display the staff name, estimated hours and hours spent within a month.

I created two fields:

Original Estimated Hours With Sub-tasks2 (
[Measures] [Original estimated hours with sub-tasks]
)

and

Hours Spent with Substask2(
[Measures]. [Hours spent with sub-tasks],
[Logged by] .CurrentMember
)

and included the field ‘logged in by’

Report%2005-11-2019

But it does not work appropriately, it generates a consolidated of estimated hours. I would like to make this report without including the tickets, that I saw this approach in another post.

I know it’s two different dimensions, how would I do to determine each staff’s estimated hours?

Tks

Hi @Roberto_Zambrano,
welcome to eazyBI community! :slight_smile:

You can create a report by using Assignee dimension in the rows, with this you will get original estimates per assignee.
After that you can find the same user as Assignee from the Logged by dimension with GetMemberByKey() function and display their Hours spent with the following formula:

(
   [Measures].[Hours spent],
   [Logged by].[User].GetMemberByKey(
     [Assignee].CurrentMember.Key
   )
)

The report would look like this:

best,

Gerda // support@eazybi.com

1 Like