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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Anonymous
Not applicable

Return back max value where ID's are the same

Hi Experts

 

I ONLY want to return back the MAX value where two ids are the same and the ID with the smallest value to be blank...

Calculated column

 

Mearure =

VAR _maxvalue = calculate(MAX(Table[cost], Allexpect(Table,Table[SKID]))

VAR _Result = 
IF(Table[Conseq] = 0,

IF(_maxvaluue > 1000000, "VB3",
IF(_maxvaluue >= 100000 && (_maxvaluue <= 1000000, "VB2B",
IF(_maxvaluue >= 25000 && (_maxvaluue <= 100000, "VB3B","VB1")))).

 

the above measure is giving me max value for both ID's

IDCostCurrent RestultExpected Result
1253542100010001000
1253542501000 

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

Please try below dax formula:

Measure =
VAR cur_id =
    SELECTEDVALUE ( 'Table'[ID] )
VAR cur_cost =
    SELECTEDVALUE ( 'Table'[Cost] )
VAR tmp =
    FILTER ( ALL ( 'Table' ), 'Table'[ID] = cur_id )
VAR max_cost =
    MAXX ( tmp, [Cost] )
VAR max_id =
    MAXX ( tmp, [ID] )
RETURN
    IF ( cur_id = max_id && cur_cost = max_cost, max_cost, BLANK () )

Add a table visual with this measure and column:

vbinbinyumsft_0-1663298622600.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous ,

Please try below dax formula:

Measure =
VAR cur_id =
    SELECTEDVALUE ( 'Table'[ID] )
VAR cur_cost =
    SELECTEDVALUE ( 'Table'[Cost] )
VAR tmp =
    FILTER ( ALL ( 'Table' ), 'Table'[ID] = cur_id )
VAR max_cost =
    MAXX ( tmp, [Cost] )
VAR max_id =
    MAXX ( tmp, [ID] )
RETURN
    IF ( cur_id = max_id && cur_cost = max_cost, max_cost, BLANK () )

Add a table visual with this measure and column:

vbinbinyumsft_0-1663298622600.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.