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
Anonymous
Not applicable

Get the max value from Group

I have created measure like that to get MAX Value From Summarized Colum

 

NightSky_0-1635074627023.png

 

The Problem is that when I try to display result of this measure in Matrix Visualization error shows up:

 

NightSky_1-1635074716586.pngNightSky_2-1635074734067.png

 

Does anyone have any idea how can I fix it to display max value from summarized table in matrix vizualization ?

 

1 ACCEPTED SOLUTION
mahoneypat
Employee
Employee

You need to use ADDCOLUMNS(SUMMARIZE(... instead of SUMMARIZECOLUMNS(...

 

Max Value =
VAR SummarizedTable =
    ADDCOLUMNS (
        SUMMARIZE (
            'Level 1 Metrics',
            'Level 1 Metrics'[Type],
            'Level 1 Metrics'[Metric Name],
            'Level 1 Metrics'[Date]
        ),
        "Total Value"CALCULATE ( SUM ( 'Level 1 Metrics'[Value] ) )
    )
RETURN
    IF (
        ISFILTERED ( 'Level 1 Metrics'[Commercial Area] ),
        MAX ( 'Level 1 Metrics'[Value] ),
        MAXX ( SummarizedTable, [Total Value] )
    )

 

Pat

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

3 REPLIES 3
mahoneypat
Employee
Employee

You need to use ADDCOLUMNS(SUMMARIZE(... instead of SUMMARIZECOLUMNS(...

 

Max Value =
VAR SummarizedTable =
    ADDCOLUMNS (
        SUMMARIZE (
            'Level 1 Metrics',
            'Level 1 Metrics'[Type],
            'Level 1 Metrics'[Metric Name],
            'Level 1 Metrics'[Date]
        ),
        "Total Value"CALCULATE ( SUM ( 'Level 1 Metrics'[Value] ) )
    )
RETURN
    IF (
        ISFILTERED ( 'Level 1 Metrics'[Commercial Area] ),
        MAX ( 'Level 1 Metrics'[Value] ),
        MAXX ( SummarizedTable, [Total Value] )
    )

 

Pat

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Anonymous
Not applicable

It worked out thx ! But I still don't remember why I should do it that way

Jos_Woolley
Solution Sage
Solution Sage

Hi,

"SUMMARIZECOLUMNS does not support evaluation within a context transition"(https://dax.guide/summarizecolumns/).
Perhaps post some data together with expected results so that we can look for workarounds.

Regards

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.

Top Solution Authors