Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
bdehning
Post Prodigy
Post Prodigy

Need help with Measure for Matrix Table and Top 5

I really need help in writing a measure.  I have attched sample PBI Table and screen shot of current table.  I use a Filter for the Reporting Location City and a Measure that shows the Top 5 Reporting Location Cities by a Count and then Sum.   That part works great.    I have been trying to get help but not getting results on my own.   Is this really not as simple as it seems.   

 

Now I need someone to write a measure that I could add to the filter that would keep the Cause Grouping under each City to the Top 5 by Frequency.      If a tie, then first look at top Frequency and then use the Incurred to break the tie to keep only 5. 

 

From image below , for example, under Kansas City there are three 3's which leaves 6 total causes  The tied 3's are Assault, Exposure and NC. 

 

The measure if working, would keep

Cut, Puncture 19

Burn, Scald 5

STF 5

NC 3

Assault 3

 

San Antonio would keep

Cut, Puncture 12

STF 10

Caught Between 2

Assault 2

Burn, Scald 2

Sample PBI File 

 

Top 5 Top 5.PNG

 

 

4 ACCEPTED SOLUTIONS
PaulDBrown
Community Champion
Community Champion

Have you tried sorting by the sum measure in descending order?





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

I would go for:

Ref =
 [Sum of Total Gross Incurred]  * 1000000000000 + COUNT(LossRunToExcel[Reporting Location City])





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

I got the first example to work in main file. Thank you for all the help.  I will need more time this weekend to try the more creative and visual 2nd option.  

View solution in original post

Yes, it's definitely an issue in the service. You need to sort by the city field to get the axis to respect the structure:

sort.gif

It actually emulates the problem we used to have in Desktop when you turned off concatenate fields: for the setting to take effect, you needed to sort the axis by the fields:

It might be worth reporting the issue on the issues forum:

https://community.powerbi.com/t5/Issues/idb-p/Issues 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

47 REPLIES 47
bdehning
Post Prodigy
Post Prodigy

Paul, I found one account so far where sort is not working.     Look under San Jose and 9 for NC is under the two 8's.?     I can try more later.   

 

Sort Not Working.PNG

 

Paul,

 

I changed 

POWER ( 20, _LNGTh ) from 10 and that worked on example I set.  Should I set Power even higher just to make sure?
bdehning
Post Prodigy
Post Prodigy

Paul, it does the City just fine but is it possible to rank the Cause Grouping the same as ther table?  Down from highest to lowest?    

bdehning
Post Prodigy
Post Prodigy

I can sort descening incurred no problem, but then Reporting Location City Freqency Counts are not decending?

Can you post a depiction?





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Sort Order1.PNG

 

Yes, I see what you mean!

First of all, change the [Ref] measure to:

 

Ref =
VAR _MX =
    MAXX (
        ALL ( InjuryCause[Cause Grouping] ),
        CALCULATE ( SUM ( LossRunToExcel[Total Gross Incurred] ) )
    )
VAR _LNGTh =
    LEN ( _MX ) + 1
RETURN
    COUNT ( LossRunToExcel[Total Gross Incurred] ) * POWER ( 10, _LNGTh )
        + SUM ( LossRunToExcel[Total Gross Incurred] )

 

Create a new measure to sort the matrix by:

 

Sort measure =
IF (
    ISINSCOPE ( InjuryCause[Cause Grouping] ),
    IF (
        ISBLANK ( [Sum of Total Gross Incurred] ),
        BLANK (),
        RANKX ( ALLSELECTED ( InjuryCause[Cause Grouping] ), [Ref],, ASC, SKIP )
    ),
    [Sum of Total Gross Incurred]
)

 

Then add and sort the matrix by the [Sort measure] 

in ascending order. Finally, turn of word wrap under Values and  column headers and "hide" the 
[Sort measure] measure by dragging the right column boundary left:
sort.gif

 

 




Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Maybe I did somehting wring.  Here are screen shot of Acesnd and Descend Sort Measure.  I Included my filter

 

Ascend

Ascend Sort Measure.PNG

 

Decend

 

Descend Sort Measure.PNG

You did nothing wrong...I did!

Try with this measure to sort the matrix by:

 

Sort Measure =
IF (
    ISINSCOPE ( InjuryCause[Cause Grouping] ),
    IF (
        ISBLANK ( [Sum of Total Gross Incurred] ),
        BLANK (),
        RANKX ( ALL ( InjuryCause[Cause Grouping] ), [Ref],, DESC, SKIP )
    ),
    RANKX (
        ALL ( LossRunToExcel[Reporting Location City] ),
        CALCULATE (
            [Sum of Total Gross Incurred],
            ALLEXCEPT ( LossRunToExcel, LossRunToExcel[Reporting Location City] )
        ),
        ,
        DESC
    )
)

sort measure.png

 

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Paul,

 

I got the sample file to be like yours and it looks fine.

 

When I applied Measure to my main file I still got a city out of order.  I can provide more data later to sample file.  San Antionio is below Kansas City.   Not sure why?  

 

Sort Example.PNG

 

Paul, I noticed the sample file screen shot from sample file is the same issue.   Glen Carbon and Shiloh are ahead of San Antonio.  So Cities are not sorting right?

 

Can we address that sort in there as well?

 

 

Ok...Let's try again!

These are the measures I've modified:

Ref =
VAR _MX =
    MAXX (
        ALL ( InjuryCause[Cause Grouping] ),
        CALCULATE ( SUM ( LossRunToExcel[Total Gross Incurred] ) )
    )
VAR _LNGTh =
    LEN ( FORMAT ( INT ( _MX ), "Text" ) ) + 1
RETURN
    COUNT ( LossRunToExcel[Total Gross Incurred] ) * POWER ( 10, _LNGTh )
        + SUM ( LossRunToExcel[Total Gross Incurred] )

New measure

Ref city =
VAR _MX =
    CALCULATE (
        DISTINCTCOUNT ( LossRunToExcel[Reporting Location City] ),
        ALLSELECTED ( LossRunToExcel )
    )
VAR _LNGTh =
    LEN ( FORMAT ( INT ( _MX ), "text" ) )
VAR _Res =
    CALCULATE ( [Count Frequency], ALLSELECTED ( InjuryCause[Cause Grouping] ) )
        * POWER ( 10, _lNGTH )
        + RANKX (
            ALL ( LossRunToExcel[Reporting Location City] ),
            CALCULATE (
                [Sum of Total Gross Incurred],
                ALLEXCEPT ( LossRunToExcel, LossRunToExcel[Reporting Location City] )
            ),
            ,
            ASC,
            DENSE
        )
RETURN
    _Res

Sort measure

Sort measure =
IF (
    ISINSCOPE ( InjuryCause[Cause Grouping] ),
    IF (
        ISBLANK ( [Sum of Total Gross Incurred] ),
        BLANK (),
        RANKX ( ALLSELECTED ( InjuryCause[Cause Grouping] ), [Ref],, ASC, SKIP )
    ),
    IF ( ISINSCOPE ( LossRunToExcel[Reporting Location City] ), [Ref city] )
)

sort measure.pngPBIX file attached





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






I have checked 4 accounts so far but need to look a lttile deeper just to make sure data is right.  

Paul, so far so good.    How could I apply the Sort Measure to the Clustered Column Chart to mirror the Matrix Table?   Possible?

 

Cause Freq.PNG

 

Ok, I've been playing around with the clustered column chart and this is what I have so far:

Change the [Sort measure] to:

 

Sort measure =
VAR _FreqByCity =
    CALCULATE (
        [Count Frequency],
        FILTER (
            ALL ( InjuryCause[Cause Grouping] ),
            [Top 5 by frequency and Incurred] < 6
        )
    )
VAR _LN =
    LEN (
        FORMAT (
            CALCULATE (
                [Count Frequency],
                ALL ( 'LossRunToExcel'[Reporting Location City] )
            ),
            "text"
        )
    )
VAR _Pre =
    _FreqByCity
        * POWER ( 10, _LN * 2 )
VAR _Inc =
    CALCULATE (
        RANKX (
            ALLSELECTED ( LossRunToExcel[Reporting Location City] ),
            [Sum of Total Gross Incurred],
            ,
            ASC,
            DENSE
        ),
        ALLSELECTED ( InjuryCause[Cause Grouping] )
    )
VAR _Mid =
    _Inc * POWER ( 10, _LN )
RETURN
    IF (
        ISBLANK ( [Count Frequency] ),
        BLANK (),
        _Pre + _Mid
            + RANKX ( ALLSELECTED ( InjuryCause[Cause Grouping] ), [Ref],, ASC, SKIP )
    )

 

If you now create the clustered column chart with the default options, adding filters to the filter pane to limit the cities, you can get what you are looking for, albeit it isn't particularly pretty:

Default.png

 If you prefer, you can create a more appealing visual as follows (albeit it might require maintenance, because we need to create a separate table for the legend colours which means if the dataset grows in cause groupings, you will need to update the legend table accordingly)

I've created the legend colour code using DAX as follows:

 

Legend colour code =
ADDCOLUMNS (
    SELECTCOLUMNS (
        DISTINCT ( InjuryCause[Cause Grouping] ),
        "Lengend Case Grouping", InjuryCause[Cause Grouping],
        "Index",
            RANKX (
                VALUES ( InjuryCause[Cause Grouping] ),
                InjuryCause[Cause Grouping],
                ,
                ASC
            )
    ),
    "Colour Code",
        SWITCH (
            [Index],
            1, "#0065A2",
            2, "#99E3F8",
            3, "#F98A3C",
            4, "#605F61",
            5, "#379810",
            6, "#C635A7",
            7, "#B90000",
            8, "#004B82",
            9, "#03B1E4",
            10, "#DFBFBF",
            11, "#9C4102",
            12, "#5F6B6D",
            13, "#FB8281",
            14, "#D4F6C6",
            15, "#4B3FF0",
            16, "#A4DDEE",
            17, "#B69ECD",
            18, "#B687AC",
            19, "#28738A",
            20, "#E6E6E6",
            21, "#168980",
            22, "#293537",
            23, "#BB4A4A",
            24, "#F2F549",
            25, "#939600"
        )
)

 

legend table.png

So the problem with this method is that if new "Case groupings" appear, you need to update and add new colour codes in the switch function.

The model is now as follows:

model.png

You can now create the same column chart as the default, but leave out the legend. You can use the following measure for the conditional formatting of the columns:

 

Colour legend =
LOOKUPVALUE (
    'Legend colour code'[Colour Code],
    'Legend colour code'[Lengend Case Grouping], MAX ( InjuryCause[Cause Grouping] )
)

 

custom column chart.png

Create a separate legend using a matrix visual as follows (you will need this measure to filter the values in the legend):

 

Filter Legend =
VAR _Table =
    ADDCOLUMNS (
        SUMMARIZE (
            LossRunToExcel,
            LossRunToExcel[Reporting Location City],
            'InjuryCause'[Cause Grouping]
        ),
        "@Rows",
            IF (
                CALCULATE (
                    RANKX (
                        ALL ( LossRunToExcel[Reporting Location City] ),
                        CALCULATE ( [Count Frequency], ALL ( InjuryCause[Cause Grouping] ) ),
                        ,
                        DESC,
                        SKIP
                    ),
                    ALL ( 'Legend colour code'[Lengend Case Grouping] )
                ) < 6
                    && [Top 5 by frequency and Incurred] < 6
                    && NOT ISBLANK ( [Count Frequency] ),
                1
            )
    )
RETURN
    COUNTROWS (
        CALCULATETABLE (
            VALUES ( 'InjuryCause'[Cause Grouping] ),
            FILTER ( _table, NOT ISBLANK ( [@Rows] ) )
        )
    )

 

legend.png

Make sure "Maintain layer order is "on" under properties in the formatting pane - it will keep the legend visible once published even if you click on the chart.

layer order.png

And the visual will be interactive based on  a selection in the legend:

legend interaction.gif

 

New file attached 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Both samples are still there.   I can not figure out why publishing the file changes the saved file example I sent where the city name is in line with all causes at angle.  Not looking good like your first example and my file.  I thought removing city name might help..  

Have you made sure that "concatenate labels" is turned off under the x-axis options for values in the formatting pane?

Concat 2.png

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Yes I did.  It's even worse if turned off.   Publishing is the issue. 

Here is what both look like from your Sample file when published.  See how City hops in front of the Cause.     How do we adjust the measure to maybe change this or can we?

 

Example 1.PNG

 

Example 2.PNG

 

Yes, it's definitely an issue in the service. You need to sort by the city field to get the axis to respect the structure:

sort.gif

It actually emulates the problem we used to have in Desktop when you turned off concatenate fields: for the setting to take effect, you needed to sort the axis by the fields:

It might be worth reporting the issue on the issues forum:

https://community.powerbi.com/t5/Issues/idb-p/Issues 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.