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
coding
Frequent Visitor

Get the max of a value based on a category and date

Hi, 

I've a table that shows me the category by state and the start and end date:

coding_0-1670006514422.png

 

and I'm trying to create a conditional column that returns the maximum of each category and status.

 

I tried to create the column in M

 

Logic= if [Status] = "InProgress" and [Start] = List.Max(#"Sorted Rows1"[Start]) and [End] = #datetime(2999, 12, 31, 0, 0, 0) then 2 else if [Status] = "Succeeded" then 1 else 0

 

​​and it is working correctly except for the case of CategoryG which should only return the value of "2" from the Logic column, and instead it is returning the maximum of the Succeeded status and the InProgress status, where it should only show the InProgress status because it has a longer start date.

coding_1-1670006799161.png

I also tried creating in DAX but got the same result (the StartDate is selected as "Earliest" and the EndDate and End Test as "Latest"):

coding_0-1670009332107.png

 

 

Flag DAX = SWITCH( TRUE (),
       'Table'[Start]= MAX ( 'Table'[Start] )
        && 'Table'[End Test] = BLANK ()
        && 'Table'[Status] = "InProgress", 2,
        'Table'[Status] = "Failed", 1,
        'Table'[Start]= LASTNONBLANK(  'Table'[Start],1 )
        && 'Table'[Status] = "Succeeded"  && 'Table'[End Test] <> BLANK (), 3,
        0
  )

 


Desired output:

coding_1-1670009484626.pngAny idea how to solve this ? 

Thanks and kind regards. 

1 ACCEPTED SOLUTION
v-jialluo-msft
Community Support
Community Support

Hi  @coding ,

 

You can try this measure:

Flag DAX = SWITCH( TRUE (),
       MAX('Table'[Start])= CALCULATE(MAX('Table'[Start]),ALL('Table'))
        && MAX('Table'[End Test]) = BLANK ()
        && MAX('Table'[Status]) = "InProgress", 2,
        MAX('Table'[Status]) = "Failed", 1,
        MAX('Table'[Start])=CALCULATE(LASTNONBLANK('Table'[Start],1),ALL('Table'))
        && MAX('Table'[Status]) = "Succeeded"  && MAX('Table'[End Test]) <> BLANK (), 3,
        0
  )

If that's not what you need, provide sample files.

 

Best Regards,
Gallen Luo
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

2 REPLIES 2
v-jialluo-msft
Community Support
Community Support

Hi  @coding ,

 

You can try this measure:

Flag DAX = SWITCH( TRUE (),
       MAX('Table'[Start])= CALCULATE(MAX('Table'[Start]),ALL('Table'))
        && MAX('Table'[End Test]) = BLANK ()
        && MAX('Table'[Status]) = "InProgress", 2,
        MAX('Table'[Status]) = "Failed", 1,
        MAX('Table'[Start])=CALCULATE(LASTNONBLANK('Table'[Start],1),ALL('Table'))
        && MAX('Table'[Status]) = "Succeeded"  && MAX('Table'[End Test]) <> BLANK (), 3,
        0
  )

If that's not what you need, provide sample files.

 

Best Regards,
Gallen Luo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

lbendlin
Super User
Super User

Please provide sanitized sample data that fully covers your issue.
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...

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.