Hello, I’m looking for a way to calculate distinct users who logged time to an issue. I’ve tried a few different variations of Count or Sum operations on [Logged by].[Users] but I either end up with the total number of members in that set, or just the sum of the issues which have time logged. This is as a user defined Measure.
As a note, when I use the [Users] hierarchy of [Logged by] as a row, it correctly breaks down Hours spent by user and my other selected row.
I used the formula above in the report for one project selections and couple bookmarked issues.
You can use Descendants( [Logged by].CurrentMember, [Logged by].[User]) to take into account Logged by user dimension. It will give a count of all users with logged hours per issue for All Users and 1 for each user with logged hours on an issue.