Order by First Row

Hi,

As you need to keep the aggregation of the Impacted feature, I assume that ordering would be needed within the aggregated rows of the “Impacted feature”. For that, you can create a custom measure for ordering. The measure would concatenate the name of the first dimension and the amount of the measure. Then you can apply ordering on that measure and remove it from the report for keeping the report clean and preserving the order.

In your case, the custom measure for ordering would be the following:

[Impacted feature].CurrentMember.Name
||
Format(CoalesceEmpty([Measures].[Issues resolved],0),"0000")

The report would look like this (I used the Assignee dimension in my example):

Kindly,
Janis, eazyBI support