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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
mim
Advocate V
Advocate V

find min and max by group and continuous order

using DAX how to calculate min and max for this table, based on the attribute color and they have to be in the same sequence , for example red -3 and red -6 are not considered in the same group as 3 and 6 are not in a continuous orderorder by.JPG

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @mim 

 

Please see the attached file with the solution.

The file contains
Calculated column

rankColorGroup = 
VAR __previousColor = 'Table'[color]
RETURN
    RANKX (
        FILTER ( 'Table', 'Table'[color] <> __previousColor ),
        'Table'[order],,,
        DENSE
    )

Two Measures

min = 
CALCULATE(
    MIN( 'Table'[order] ),
    ALL( 'Table' ),
    VALUES( 'Table'[rankColorGroup] )
)
max = 
CALCULATE(
    MAX( 'Table'[order] ),
    ALL( 'Table' ),
    VALUES( 'Table'[rankColorGroup] )
)
Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

 

View solution in original post

2 REPLIES 2
Mariusz
Community Champion
Community Champion

Hi @mim 

 

Please see the attached file with the solution.

The file contains
Calculated column

rankColorGroup = 
VAR __previousColor = 'Table'[color]
RETURN
    RANKX (
        FILTER ( 'Table', 'Table'[color] <> __previousColor ),
        'Table'[order],,,
        DENSE
    )

Two Measures

min = 
CALCULATE(
    MIN( 'Table'[order] ),
    ALL( 'Table' ),
    VALUES( 'Table'[rankColorGroup] )
)
max = 
CALCULATE(
    MAX( 'Table'[order] ),
    ALL( 'Table' ),
    VALUES( 'Table'[rankColorGroup] )
)
Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

 

Anonymous
Not applicable

Hi, I tried to use solution proposed but when individual values are one after another there is an error in calculation. Do you have some idea how to fix this, I have no idea how to fix this.

 

RANKX.jpg

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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