Hi All,
I'm trying to calculate a simple ratio (maintenance time spent per developer) so I've aggregated by "Logged By" dimension and I'm trying to get the item count for this aggregation.
Any idea?
Thanks for your help!
Hi Jerome,
If you have a Logged by calculated member named 'aggregated member', then with following formula in Measures dimension, you can count how many members are in that calculated member
Count( ChildrenSet([Logged by].[aggregated member]) )
Please let me know if you have further questions regarding this!
Kind regards,
Lauma / support@eazybi.com
Hi Lauma, Glad your're back :) It works fine if I have only one level of aggregation, here I have two levels like this: Team A |____ Project Managers |____ Developers |____ QA
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks :) Do I understand correctly that you have the Logged by dimension on rows? To see how many members re in each of the aggregated members, you can use following formula NonZero(Count( ChildrenSet([Logged by].CurrentMember) ))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Almost :) I'm sending you the report definition but I've something like this for my "logged by" aggregation: - Team A | __ Devs | |_ Robert | |_ Alice | |.... |_ PMs |_ Mark |_ Gwen + Team B + Team C Off course in my report the Team A is not "expended" (drilled into). I hope this helps to clarify. Thanks for your help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for the explanation! I understand it now and also sent reply to your e-mail. Shortly, you can use the CascadingChildrenSet(..) function (https://docs.eazybi.com/display/EAZYBI/CascadingChildrenSet) instead NonZero(Count( Generate(CascadingChildrenSet([Logged by].CurrentMember), [Logged by].CurrentMember) ))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Works perfectly with
NonZero(Count( Generate(CascadingChildrenSet([Logged by].CurrentMember), [Logged by].CurrentMember) ))
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.