Calculate unique users in worklogs for period of time

I’ve creted repot for hours spent and count issues. (from standart mesures)
Now i need to count all users, that submitted their work to worklogs

How can I calculate it ?

@e.buturlya

Try creating new user-defined calcualted measure using this formula:

Count(
Filter(
DescendantsSet([Logged by].CurrentHierarchyMember,[Logged by].[User]),
[Measures].[Hours spent]>0
)
)

It will go through all User-level members from the “Logged by” dimension and count those that have logged hours in the report context.

Martins / eazyBI support