Is there a way to count the number of selected assignees that are being used as a dimension in pages for a calculated measure?
for example
(DateDiffWorkDays(DateParse([Time].[Day].CurrentMember.Name), DateParse('Aug 1 2015'))) * ((count(# of assignees) * 4)
What I am trying to accomplish is days * (a count of number of selected assignees * 4 )
Hi Alexis,
Yes, this would be possible
Count(ChildrenSet( [Assignee].CurrentMember ))
Note that in case All Assignees are selected, this would return total number of members in Assignee dimension.
So your formula would be as follows
DateDiffWorkDays( DateParse([Time].[Day].CurrentMember.Name), DateParse('Aug 1 2015') ) * Count(ChildrenSet( [Assignee].CurrentMember )) * 4
Kind regards,
Lauma / support@eazybi.com
Hello Lauma
Is it possible to calculate how many unique assignees (or reporters) have been assigned to issues on for eg. monthly chart? On a chart with time dimmension in rows and issues created/issues resolved/open issues in columns i'd like to add a number of assignees related to each column.
Edit: to monitor dependence between growth of open issues and number of people involved in resolving them. So it should be a number of resolved issues assignees. But number related to created and open won't hurt:)
thansk in advance!
Chris
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.