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
iamprajot
Responsive Resident
Responsive Resident

This DAX formula is not working.

Result =
VAR SecondLast = CALCULATE(MAX(Data[Units]),FILTER(ALL(Data[Units]),Data[Units]<MAX(Data[Units])))
RETURN
CALCULATE(VALUES(Data[Units]),FILTER(ALL(Data),Data[Units]=SecondLast))

 

In SecondLast I am trying to get the second Max Unit available

& finally trying to get the second Max Unit available for whatever the selection I have put in from other columns e.g. Items, Dates etc

But seems like there is no result (blank) in this SecondLast variable and hence no result at all.

3 REPLIES 3
v-chuncz-msft
Community Support
Community Support

@iamprajot,

 

Things are harder when you have nested CALCULATE statements. You may try using RANKX Function instead.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks but what I am curious about is that it is working without the columnname and not with it.

ALL(Data[Units]) - not working

ALL(Data[Units]) - removing column name worked

iamprajot
Responsive Resident
Responsive Resident

Removing Column Name and keeping the Table Name did the thing, but WHY and HOW ? It doesn't matter if I keep whole Table or a single Column.

Result =
VAR SecondLast = CALCULATE(MAX(Data[Units]),FILTER(ALL(Data[Units]),Data[Units]<MAX(Data[Units])))
RETURN
CALCULATE(VALUES(Data[Units]),FILTER(ALL(Data),Data[Units]=SecondLast))

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.