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

All Except not working

Hi All,

 

i wanted to change the top 25 value only for the Reporting Region filters. I have come up with the below DAX but it doesn't work.

 

May I know if anyone has any suggestions for this?

 

1.Top25 value = CALCULATE(
     [Revenue],
         TOPN(25,GROUPBY('Sheet1','Sheet1'[OpportunityID]),
        CALCULATE(
    [Revenue],
    ALLEXCEPT('Sheet1','Sheet1'[ReportingRegion]))))
 
Regards,
Ranjan
1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

Something like

 

Top25 = 
var a = calculatetable(summarize('Sheet1',[OpportunityID],"sm",[Revenue]),ALLEXCEPT('Sheet1','Sheet1'[ReportingRegion]))
var b = TOPN(25,a,[sm])
return SUMX(b,[sm])

View solution in original post

1 REPLY 1
lbendlin
Super User
Super User

Something like

 

Top25 = 
var a = calculatetable(summarize('Sheet1',[OpportunityID],"sm",[Revenue]),ALLEXCEPT('Sheet1','Sheet1'[ReportingRegion]))
var b = TOPN(25,a,[sm])
return SUMX(b,[sm])

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.