Count members of Tempo Team

Hi,

“Logged by” dimension has only those users that has logged at least 1 time entry on imported issues.
Otherwise, the user won’t be found in this dimension and this approach won’t work.

eazyBI imports data based on issues and worklogs.
Inactive users are not imported in eazyBI.

see more details about the general user dimension here

The closest you could perhaps do is changing the formula so it searches for user worklogs through out whole history of issues (not just particular period of time)

NonZero(
Count(
Filter(
Descendants([Logged by].CurrentHierarchyMember,[Logged by].[User]),
([Measures].[Hours spent],[Time].Currenthierarchy.DefaultMember)>0
)
)
)

This calculation would check if the “Logged by” dimension member has logged time for the imported issues at all, no matter of when.

Martins / eazyBI support

1 Like