Hi All,
Simple question that puzzles me: I want to arbitrary group several dimension members (for example ticket reporters). I do it frequently with MS Excel, but I have absolutely no clues on how to do it with EazyBI and I failed finding it in the documentation.
Thank you for your help!
Hi Jerome!
To group several dimension members you can use the Aggregate(set) MDX function in eazyBI dimension calculated members where you wish to group some members.
For example, if I would like to aggregate two reporters with JIRA user display names John and Anne, then the formula in Reporter dimension would be as follows
Aggregate({ [Reporter].[Anne], [Reporter].[John] })
Or you can also use the Filter for all dimension members and only find the ones that match some condition. See examples about reports using JIRA user groups.
Let me know if you have additional questions!
Lauma
Hi Lauma, Once again perfect answer :). Thanks for you quick and efficient help! Jerome
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A follow up question on this. How can I find out how many members belong to the above group created.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Dipti, To count how many users are in the Aggregated set you can use the Count function (https://docs.eazybi.com/display/EAZYBI/Count). For example the following would count how many users are in Assignee calculated member named 'Developer group' Count( ChildrenSet([Assignee].[Developer group]) ) Kind regards, Lauma / support@eazybi.com
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.