Filtering and displaying


I have an Issue type that I want to show the following report

Per Quarter
Show the total of Created Issues that have >2 occurrences of remote connection
Show percentage of >2 remote connections from all Created issues of that Issue type for that quarter

I have tried a number of ways and just get errors so I would appreciate some assistance

Regards
Ian

Hi @IGMF

I assume that in the Rows section, you have a custom dimension “Remote connections”.
You can define a new calculated member in this dimension that will Filter and Aggregate all of the Remote connection members with a value above “2”:

Aggregate(
  Filter(
    Filter(
      [Remote connection].[Remote connection].Members,
      [Remote connection].CurrentMember.Name <> "(none)"
    ),
    Cast([Remote connections].CurrentMember.Name as Numeric) > 2
  )
)

For the percentage calculation, you can define a new calculated measure in the Measures dimension with a formula like this:

(
  [Measures].[Issues created],
  [Remote connection].CurrentHierarchyMember
)
/
(
  [Measures].[Issues created],
  [Remote connection].DefaultMember
)

For this measure, set the Formatting to Percentage. Add the Issue Type dimension to the Pages section to filter by whichever type is necessary.

Best regards,
Nauris / eazyBI support

Hi
Thank you
This worked well on the first run but I have now hit a bug that for some reason it will no longer show the output
The output was correct and worked fine

But all the same
Thank you
I will resolve the bug and use this

Regards
Ian